Kaydet (Commit) 7ca49361 authored tarafından Giampaolo Rodola''s avatar Giampaolo Rodola'

attempt to fix bb failure as per http://bugs.python.org/issue17675#msg186595

üst 3121e329
......@@ -657,9 +657,9 @@ class GeneralModuleTests(unittest.TestCase):
self.assertIn('family=%i' % socket.AF_INET, repr(s))
self.assertIn('type=%i' % socket.SOCK_STREAM, repr(s))
self.assertIn('proto=0', repr(s))
self.assertIn('laddr', repr(s))
self.assertNotIn('raddr', repr(s))
s.bind(('127.0.0.1', 0))
self.assertIn('laddr', repr(s))
self.assertIn(str(s.getsockname()), repr(s))
self.assertIn('[closed]', repr(s))
self.assertNotIn('laddr', repr(s))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment