[Python-checkins] r57518 - python/trunk/Lib/test/test_ssl.py
neal.norwitz
python-checkins at python.org
Sun Aug 26 23:40:16 CEST 2007
Author: neal.norwitz
Date: Sun Aug 26 23:40:16 2007
New Revision: 57518
Modified:
python/trunk/Lib/test/test_ssl.py
Log:
Get the test passing by commenting out some writes (should they be removed?)
Modified: python/trunk/Lib/test/test_ssl.py
==============================================================================
--- python/trunk/Lib/test/test_ssl.py (original)
+++ python/trunk/Lib/test/test_ssl.py Sun Aug 26 23:40:16 2007
@@ -194,7 +194,7 @@
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 @@
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:
More information about the Python-checkins
mailing list