diff options
author | Georg Brandl <georg@python.org> | 2006-03-31 21:12:32 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-03-31 21:12:32 (GMT) |
commit | c90397a7c924355052f1331360502a668bc1e69d (patch) | |
tree | 0d57213bfcf6e10e5e4abd8365dc6afdc35451bb /Lib/test/test_socket_ssl.py | |
parent | ed02eb6aa99ea27f57d0a3c303d8e825d8ef6d9c (diff) | |
download | cpython-c90397a7c924355052f1331360502a668bc1e69d.zip cpython-c90397a7c924355052f1331360502a668bc1e69d.tar.gz cpython-c90397a7c924355052f1331360502a668bc1e69d.tar.bz2 |
Make test_socket_ssl finally pass on WIn
Diffstat (limited to 'Lib/test/test_socket_ssl.py')
-rw-r--r-- | Lib/test/test_socket_ssl.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_socket_ssl.py b/Lib/test/test_socket_ssl.py index 3641e33..a82db5c 100644 --- a/Lib/test/test_socket_ssl.py +++ b/Lib/test/test_socket_ssl.py @@ -40,6 +40,9 @@ if not sys.platform.startswith('win'): ss.read(1) ss.read(1) s.close() +else: + def test_timeout(): + pass def test_rude_shutdown(): try: |