diff options
author | Guido van Rossum <guido@python.org> | 1994-12-30 17:17:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-12-30 17:17:46 (GMT) |
commit | eecf035aa209cedb4ede08b527120ba3946a0c96 (patch) | |
tree | ceeb0c23f781539d1e203fa3d5def34900eb117b /Lib/test/test_b2.py | |
parent | 5505d56f088b1637b7d3c10e97512ee9b9bc8cf0 (diff) | |
download | cpython-eecf035aa209cedb4ede08b527120ba3946a0c96.zip cpython-eecf035aa209cedb4ede08b527120ba3946a0c96.tar.gz cpython-eecf035aa209cedb4ede08b527120ba3946a0c96.tar.bz2 |
Test new __import__ module, test reload of built-in module, test
has_key() on empty dictionary
Diffstat (limited to 'Lib/test/test_b2.py')
-rw-r--r-- | Lib/test/test_b2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_b2.py b/Lib/test/test_b2.py index aacb403..9963779 100644 --- a/Lib/test/test_b2.py +++ b/Lib/test/test_b2.py @@ -148,8 +148,8 @@ if reduce(lambda x, y: x+y, Squares(0), 0) != 0: print 'reload' -#import strop -#reload(strop) +import marshal +reload(marshal) import string reload(string) import sys |