diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-04-01 01:32:13 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-04-01 01:32:13 (GMT) |
commit | d8eaa49092f60dd6c5a6ea028e8b406e45594031 (patch) | |
tree | 36733b58f6818107f60477878f567ae49a6ee082 | |
parent | 4423b8cebcdbdbf55b914375d7b4d010b9ed4dbb (diff) | |
download | cpython-d8eaa49092f60dd6c5a6ea028e8b406e45594031.zip cpython-d8eaa49092f60dd6c5a6ea028e8b406e45594031.tar.gz cpython-d8eaa49092f60dd6c5a6ea028e8b406e45594031.tar.bz2 |
Fix stupid typo.
-rw-r--r-- | Lib/test/test_socket_ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket_ssl.py b/Lib/test/test_socket_ssl.py index 078b6f9..0e31904 100644 --- a/Lib/test/test_socket_ssl.py +++ b/Lib/test/test_socket_ssl.py @@ -30,7 +30,7 @@ def test_basic(): # XXX Tim disabled this test on all platforms, for now, since the # XXX s.connect(("gmail.org", 995)) # XXX line starting timing out on all the builbot slaves. -if 0: not sys.platform.startswith('win'): +if 0: #not sys.platform.startswith('win'): def test_timeout(): test_support.requires('network') |