diff options
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index 1d9ea35c5b..302cc259da 100644 --- a/Python/import.c +++ b/Python/import.c @@ -149,7 +149,7 @@ exec_code_module(name, co) return NULL; d = getmoduledict(m); if (dictlookup(d, "__builtins__") == NULL) { - if (dictinsert(d, "__builtins__", getbuiltindict()) != 0) + if (dictinsert(d, "__builtins__", getbuiltins()) != 0) return NULL; } v = eval_code((codeobject *)co, d, d, d, (object *)NULL); |