[cig-commits] r15811 - cs/pythia/trunk/pyre/ipc

leif at geodynamics.org leif at geodynamics.org
Thu Oct 15 12:46:39 PDT 2009


Author: leif
Date: 2009-10-15 12:46:39 -0700 (Thu, 15 Oct 2009)
New Revision: 15811

Modified:
   cs/pythia/trunk/pyre/ipc/Socket.py
Log:
The 'type' attribute of a socket.socket object cannot be set under
Python 2.5.  Pyre code doesn't seem to use it, anyway.


Modified: cs/pythia/trunk/pyre/ipc/Socket.py
===================================================================
--- cs/pythia/trunk/pyre/ipc/Socket.py	2009-10-14 22:47:37 UTC (rev 15810)
+++ cs/pythia/trunk/pyre/ipc/Socket.py	2009-10-15 19:46:39 UTC (rev 15811)
@@ -31,7 +31,6 @@
 
 
     def __init__(self, type):
-        self.type = type
         socket.socket.__init__(self, type=type)
         return
 



More information about the CIG-COMMITS mailing list