[Python-checkins] r64961 - python/trunk/Lib/multiprocessing/connection.py

jesse.noller python-checkins at python.org
Tue Jul 15 15:47:33 CEST 2008


Author: jesse.noller
Date: Tue Jul 15 15:47:33 2008
New Revision: 64961

Log:
multiprocessing/connection.py patch to remove fqdn oddness for issue 3270

Modified:
   python/trunk/Lib/multiprocessing/connection.py

Modified: python/trunk/Lib/multiprocessing/connection.py
==============================================================================
--- python/trunk/Lib/multiprocessing/connection.py	(original)
+++ python/trunk/Lib/multiprocessing/connection.py	Tue Jul 15 15:47:33 2008
@@ -215,10 +215,6 @@
         self._socket = socket.socket(getattr(socket, family))
         self._socket.bind(address)
         self._socket.listen(backlog)
-        address = self._socket.getsockname()
-        if type(address) is tuple:
-            address = (socket.getfqdn(address[0]),) + address[1:]
-        self._address = address
         self._family = family
         self._last_accepted = None
 


More information about the Python-checkins mailing list