[Python-checkins] r86115 - python/branches/release27-maint/Lib/test/test_socket.py

brian.curtin python-checkins at python.org
Tue Nov 2 14:46:09 CET 2010


Author: brian.curtin
Date: Tue Nov  2 14:46:08 2010
New Revision: 86115

Log:
Remove an assert which snuck in during merging from py3k.


Modified:
   python/branches/release27-maint/Lib/test/test_socket.py

Modified: python/branches/release27-maint/Lib/test/test_socket.py
==============================================================================
--- python/branches/release27-maint/Lib/test/test_socket.py	(original)
+++ python/branches/release27-maint/Lib/test/test_socket.py	Tue Nov  2 14:46:08 2010
@@ -716,7 +716,6 @@
         fd = self.cli_conn.fileno()
         sock = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM)
         self.addCleanup(sock.close)
-        self.assertIsInstance(sock, socket.socket)
         msg = sock.recv(1024)
         self.assertEqual(msg, MSG)
 


More information about the Python-checkins mailing list