[pypy-svn] r61027 - pypy/trunk/pypy/module/_socket

fijal at codespeak.net fijal at codespeak.net
Fri Jan 16 10:16:59 CET 2009


Author: fijal
Date: Fri Jan 16 10:16:58 2009
New Revision: 61027

Modified:
   pypy/trunk/pypy/module/_socket/interp_socket.py
Log:
export proto attribute as well


Modified: pypy/trunk/pypy/module/_socket/interp_socket.py
==============================================================================
--- pypy/trunk/pypy/module/_socket/interp_socket.py	(original)
+++ pypy/trunk/pypy/module/_socket/interp_socket.py	Fri Jan 16 10:16:58 2009
@@ -474,6 +474,7 @@
     __new__ = descr_socket_new,
     __weakref__ = make_weakref_descr(W_RSocket),
     type = interp_attrproperty('type', W_RSocket),
+    proto = interp_attrproperty('proto', W_RSocket),
     family = interp_attrproperty('family', W_RSocket),
     ** socketmethods
     )



More information about the Pypy-commit mailing list