summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ssl.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-08-26 21:40:16 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2007-08-26 21:40:16 (GMT)
commit15d4e56c40896d0544cf5df618d651199be17974 (patch)
tree68da08d8664491749d3608089e8f5c224167080c /Lib/test/test_ssl.py
parente472933e2781a5e99dd2d30b72d2a9d69ccd37a0 (diff)
downloadcpython-15d4e56c40896d0544cf5df618d651199be17974.zip
cpython-15d4e56c40896d0544cf5df618d651199be17974.tar.gz
cpython-15d4e56c40896d0544cf5df618d651199be17974.tar.bz2
Get the test passing by commenting out some writes (should they be removed?)
Diffstat (limited to 'Lib/test/test_ssl.py')
-rw-r--r--Lib/test/test_ssl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index 2d4e412..70346d0 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -194,7 +194,7 @@ class threadedEchoServer(threading.Thread):
self.server.stop()
self.running = False
else:
- sys.stdout.write("\nserver: %s\n" % msg.strip().lower())
+ #sys.stdout.write("\nserver: %s\n" % msg.strip().lower())
sslconn.write(msg.lower())
except ssl.sslerror:
sys.stdout.write("Test server failure:\n" + string.join(
@@ -235,7 +235,7 @@ class threadedEchoServer(threading.Thread):
while self.active:
try:
newconn, connaddr = self.sock.accept()
- sys.stdout.write('\nserver: new connection from ' + str(connaddr) + '\n')
+ #sys.stdout.write('\nserver: new connection from ' + str(connaddr) + '\n')
handler = self.connectionHandler(self, newconn)
handler.start()
except socket.timeout: