summaryrefslogtreecommitdiff
path: root/Lib/test/test_b2.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-02 03:19:26 +0000
committerGuido van Rossum <guido@python.org>1997-08-02 03:19:26 +0000
commit7afe6e20952d068eb989b5868149f15512d9d92b (patch)
tree82df8480d7c04636b01fce401c70c562df81cbd6 /Lib/test/test_b2.py
parent41852a07a3baef7c25dfc291190d013d882581eb (diff)
downloadcpython-7afe6e20952d068eb989b5868149f15512d9d92b.tar.gz
The reload(sys) test no longer works due to changes in the import
semantics.
Diffstat (limited to 'Lib/test/test_b2.py')
-rw-r--r--Lib/test/test_b2.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_b2.py b/Lib/test/test_b2.py
index 1c1ea0c2c6..210206d661 100644
--- a/Lib/test/test_b2.py
+++ b/Lib/test/test_b2.py
@@ -153,10 +153,10 @@ import marshal
reload(marshal)
import string
reload(string)
-import sys
-try: reload(sys)
-except ImportError: pass
-else: raise TestFailed, 'reload(sys) should fail'
+## import sys
+## try: reload(sys)
+## except ImportError: pass
+## else: raise TestFailed, 'reload(sys) should fail'
print 'repr'
if repr('') <> '\'\'': raise TestFailed, 'repr(\'\')'