diff options
author | doko@ubuntu.com <doko@ubuntu.com> | 2013-12-26 16:37:11 (GMT) |
---|---|---|
committer | doko@ubuntu.com <doko@ubuntu.com> | 2013-12-26 16:37:11 (GMT) |
commit | e575148cc23283f72aeeb0bff4a9343ce738aa92 (patch) | |
tree | 31a54b94db8463f931133214960f9f0ae72a6b20 | |
parent | bb4b7c12fa63794743b3448184f7ba13266a4834 (diff) | |
download | cpython-e575148cc23283f72aeeb0bff4a9343ce738aa92.zip cpython-e575148cc23283f72aeeb0bff4a9343ce738aa92.tar.gz cpython-e575148cc23283f72aeeb0bff4a9343ce738aa92.tar.bz2 |
- Issue #20070: Don't run test_urllib2net when network resources are not
enabled.
-rw-r--r-- | Lib/test/test_urllib2net.py | 3 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py index fba3cea..ab638ea 100644 --- a/Lib/test/test_urllib2net.py +++ b/Lib/test/test_urllib2net.py @@ -14,6 +14,8 @@ try: except ImportError: ssl = None +support.requires("network") + TIMEOUT = 60 # seconds @@ -339,5 +341,4 @@ class TimeoutTest(unittest.TestCase): if __name__ == "__main__": - support.requires("network") unittest.main() @@ -253,6 +253,9 @@ IDLE Tests ----- +- Issue #20070: Don't run test_urllib2net when network resources are not + enabled. + - Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had been disabled since 3.0 due to the changes in listcomp handling. |