mirror of
https://github.com/python/cpython.git
synced 2025-07-31 07:04:42 +00:00
Remove references to test_socket_ssl which was deleted in trunk
in r64392 and py3k in r59038.
This commit is contained in:
parent
008af85dc0
commit
e7c9e092b3
1 changed files with 0 additions and 12 deletions
|
@ -778,9 +778,6 @@ def printlist(x, width=70, indent=4):
|
||||||
# test_pep277
|
# test_pep277
|
||||||
# The _ExpectedSkips constructor adds this to the set of expected
|
# The _ExpectedSkips constructor adds this to the set of expected
|
||||||
# skips if not os.path.supports_unicode_filenames.
|
# 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
|
# test_timeout
|
||||||
# Controlled by test_timeout.skip_expected. Requires the network
|
# Controlled by test_timeout.skip_expected. Requires the network
|
||||||
# resource and a socket module.
|
# resource and a socket module.
|
||||||
|
@ -1057,7 +1054,6 @@ _expectations = {
|
||||||
test_ossaudiodev
|
test_ossaudiodev
|
||||||
test_pep277
|
test_pep277
|
||||||
test_pty
|
test_pty
|
||||||
test_socket_ssl
|
|
||||||
test_socketserver
|
test_socketserver
|
||||||
test_tcl
|
test_tcl
|
||||||
test_tk
|
test_tk
|
||||||
|
@ -1145,14 +1141,6 @@ class _ExpectedSkips:
|
||||||
if not os.path.supports_unicode_filenames:
|
if not os.path.supports_unicode_filenames:
|
||||||
self.expected.add('test_pep277')
|
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:
|
if test_timeout.skip_expected:
|
||||||
self.expected.add('test_timeout')
|
self.expected.add('test_timeout')
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue