From 94390ec2a6ea5acbea9dead528ce067c396a0301 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 12 Jan 1995 11:37:57 +0000 Subject: use getbuiltins() everywhere, it defaults to getbuiltidict() --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index a25cbba848..11bd029a9c 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -100,7 +100,7 @@ initmain() fatal("can't create __main__ module"); d = getmoduledict(m); if (dictlookup(d, "__builtins__") == NULL) { - if (dictinsert(d, "__builtins__", getbuiltindict())) + if (dictinsert(d, "__builtins__", getbuiltins())) fatal("can't add __builtins__ to __main__"); } } -- cgit v1.2.1