[Python-checkins] r70747 - python/trunk/Lib/test/regrtest.py

r.david.murray python-checkins at python.org
Mon Mar 30 22:04:07 CEST 2009


Author: r.david.murray
Date: Mon Mar 30 22:04:06 2009
New Revision: 70747

Log:
Remove references to test_socket_ssl which was deleted in trunk
in r64392 and py3k in r59038.


Modified:
   python/trunk/Lib/test/regrtest.py

Modified: python/trunk/Lib/test/regrtest.py
==============================================================================
--- python/trunk/Lib/test/regrtest.py	(original)
+++ python/trunk/Lib/test/regrtest.py	Mon Mar 30 22:04:06 2009
@@ -778,9 +778,6 @@
 #     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.
@@ -1057,7 +1054,6 @@
         test_ossaudiodev
         test_pep277
         test_pty
-        test_socket_ssl
         test_socketserver
         test_tcl
         test_tk
@@ -1145,14 +1141,6 @@
             if not os.path.supports_unicode_filenames:
                 self.expected.add('test_pep277')
 
-            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')
 


More information about the Python-checkins mailing list