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_b1.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_b1.py')
-rw-r--r-- | Lib/test/test_b1.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_b1.py b/Lib/test/test_b1.py index 3fab517..356edd2 100644 --- a/Lib/test/test_b1.py +++ b/Lib/test/test_b1.py @@ -2,6 +2,14 @@ from test_support import * +print '__import__' +__import__('sys') +__import__('strop') +__import__('string') +try: __import__('spamspam') +except ImportError: pass +else: raise TestFailed, "__import__('spamspam') should fail" + print 'abs' if abs(0) <> 0: raise TestFailed, 'abs(0)' if abs(1234) <> 1234: raise TestFailed, 'abs(1234)' |