Kaydet (Commit) b56933ed authored tarafından Guido van Rossum's avatar Guido van Rossum

Intern the strings "__builtins__".

üst c6d0670f
......@@ -147,7 +147,7 @@ newframeobject(back, code, globals, locals, owner, nvalues, nblocks)
frameobject *f;
object *builtins;
if (builtin_object == NULL) {
builtin_object = newstringobject("__builtins__");
builtin_object = PyString_InternFromString("__builtins__");
if (builtin_object == NULL)
return NULL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment