Slight optimization.

This commit is contained in:
Jeremy Fincher 2004-09-01 12:56:19 +00:00
parent 4e2be3a6a3
commit 7afea527fa

View File

@ -214,8 +214,9 @@ if not hasattr(Exception, '_original__init__'):
Exception.__init__ = __init__
g = globals()
for name in exported:
__builtins__[name] = globals()[name]
__builtins__[name] = g[name]