diff options
author | Guido van Rossum <guido@python.org> | 1993-10-22 14:24:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-10-22 14:24:22 (GMT) |
commit | b3b09c97ce0b40a282553b0366addc879a115eb4 (patch) | |
tree | 2645072ddae2aadfab339dcc6578de459bda6ddc /Lib/builtin.py | |
parent | b37954f91771735e8595918f6e43f46438db7397 (diff) | |
download | cpython-b3b09c97ce0b40a282553b0366addc879a115eb4.zip cpython-b3b09c97ce0b40a282553b0366addc879a115eb4.tar.gz cpython-b3b09c97ce0b40a282553b0366addc879a115eb4.tar.bz2 |
added builtin b/w compat module.
changed testing of exec.
Diffstat (limited to 'Lib/builtin.py')
-rwxr-xr-x | Lib/builtin.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/builtin.py b/Lib/builtin.py new file mode 100755 index 0000000..710d825 --- /dev/null +++ b/Lib/builtin.py @@ -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 * |