[Jython-checkins] jython: Remove debugging print from test

jim.baker jython-checkins at python.org
Mon Nov 14 00:56:21 EST 2016


https://hg.python.org/jython/rev/ff15e99f2c25
changeset:   7970:ff15e99f2c25
user:        Jim Baker <jim.baker at rackspace.com>
date:        Sun Nov 13 22:56:17 2016 -0700
summary:
  Remove debugging print from test

files:
  Lib/test/test_socket.py |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -2289,7 +2289,6 @@
             # This port should not be open at this time
             self.s.connect( (HOST, PORT) )
         except socket.error, se:
-            import sys; print >> sys.stderr, se
             self.failUnlessEqual(se[0], errno.ECONNREFUSED)
         except Exception, x:
             self.fail("Connection to non-existent host/port raised wrong exception: %s" % x)

-- 
Repository URL: https://hg.python.org/jython


More information about the Jython-checkins mailing list