Message3473

Author glyph
Recipients glyph
Date 2008-09-06.16:27:58
SpamBayes Score 8.5193715e-06
Marked as misclassified No
Message-id <1220718478.73.0.822570265002.issue1120@psf.upfronthosting.co.za>
In-reply-to
Content
From CPython:

>>> import socket
>>> socket.socket(socket.AF_INET, socket.SOCK_STREAM)
<socket._socketobject object at 0xb7d71aac>
>>> s = _
>>> s.shutdown(socket.SHUT_RDWR)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 1, in shutdown
socket.error: (107, 'Transport endpoint is not connected')

From Jython:

>>> import socket
>>> socket.socket(socket.AF_INET, socket.SOCK_STREAM)
<socket._socketobject object at 1>
>>> s = _
>>> s.shutdown(socket.SHUT_RDWR)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 1, in shutdown
  File "/home/glyph/Projects/Jython/trunk/jython/dist/Lib/socket.py",
line 810, in shutdown
    assert self.sock_impl
AssertionError
History
Date User Action Args
2008-09-06 16:27:58glyphsetrecipients: + glyph
2008-09-06 16:27:58glyphsetmessageid: <1220718478.73.0.822570265002.issue1120@psf.upfronthosting.co.za>
2008-09-06 16:27:58glyphlinkissue1120 messages
2008-09-06 16:27:58glyphcreate