diff options
author | Bill Janssen <janssen@parc.com> | 2007-11-17 21:51:51 (GMT) |
---|---|---|
committer | Bill Janssen <janssen@parc.com> | 2007-11-17 21:51:51 (GMT) |
commit | 6030a60a4e8a04e2e52761518461837cc12d3b56 (patch) | |
tree | 62e0f5c2fb0c530a899cf306f0a0fc2072ea212a /Lib/test/regrtest.py | |
parent | bce52be4916fe817cf2f08aa00ee1cc224e3513f (diff) | |
download | cpython-6030a60a4e8a04e2e52761518461837cc12d3b56.zip cpython-6030a60a4e8a04e2e52761518461837cc12d3b56.tar.gz cpython-6030a60a4e8a04e2e52761518461837cc12d3b56.tar.bz2 |
remove now-obsolete test_socket_ssl
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 3a24b22..a780c7c 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -856,9 +856,6 @@ def printlist(x, width=70, indent=4): # test_pep277 # The _ExpectedSkips constructor adds this to the set of expected # skips if not os.path.supports_unicode_filenames. -# test_socket_ssl -# Controlled by test_socket_ssl.skip_expected. Requires the network -# resource, and a socket module with ssl support. # test_timeout # Controlled by test_timeout.skip_expected. Requires the network # resource and a socket module. @@ -1063,7 +1060,6 @@ _expectations = { test_ossaudiodev test_pep277 test_pty - test_socket_ssl test_socketserver test_tcl test_timeout @@ -1137,14 +1133,6 @@ class _ExpectedSkips: self.expected.add('test_cProfile') self.expected.add('test_doctest') - try: - from test import test_socket_ssl - except ImportError: - pass - else: - if test_socket_ssl.skip_expected: - self.expected.add('test_socket_ssl') - if test_timeout.skip_expected: self.expected.add('test_timeout') |