Message8138

Author marcel
Recipients marcel
Date 2013-10-01.13:36:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380634580.77.0.877774145766.issue2094@psf.upfronthosting.co.za>
In-reply-to
Content
On CPython 2.7.3:
>>> import socket
>>> socket.socket.recv_into
<member 'recv_into' of '_socketobject' objects>
>>> socket.socket().recv_into
<built-in method recv_into of _socket.socket object at 0x01EE7098>

On Jython2.7b1:
>>> import socket
>>> socket.socket.recv_into
<member 'recv_into' of '_socketobject' objects>
>>> socket.socket().recv_into
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: '_socketobject' object has no attribute 'recv_into'
History
Date User Action Args
2013-10-01 13:36:20marcelsetrecipients: + marcel
2013-10-01 13:36:20marcelsetmessageid: <1380634580.77.0.877774145766.issue2094@psf.upfronthosting.co.za>
2013-10-01 13:36:20marcellinkissue2094 messages
2013-10-01 13:36:20marcelcreate