added builtin b/w compat module.

changed testing of exec.
This commit is contained in:
Guido van Rossum 1993-10-22 14:24:22 +00:00
parent b37954f917
commit b3b09c97ce
4 changed files with 25 additions and 11 deletions

3
Lib/builtin.py Executable file
View file

@ -0,0 +1,3 @@
# B/W compat hack so code that says "import builtin" won't break after
# name change from builtin to __builtin__.
from __builtin__ import *