summaryrefslogtreecommitdiffstats
path: root/Python/import.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-12 11:37:57 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-12 11:37:57 (GMT)
commit94390ec2a6ea5acbea9dead528ce067c396a0301 (patch)
treec21a7fa8324d17b76e00ae991621c0be673c3dba /Python/import.c
parent922d8ff8036c2916471163c78010d8deab9eefc2 (diff)
downloadcpython-94390ec2a6ea5acbea9dead528ce067c396a0301.zip
cpython-94390ec2a6ea5acbea9dead528ce067c396a0301.tar.gz
cpython-94390ec2a6ea5acbea9dead528ce067c396a0301.tar.bz2
use getbuiltins() everywhere, it defaults to getbuiltidict()
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index 1d9ea35..302cc25 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);