Message3474

Author glyph
Recipients glyph
Date 2008-09-06.16:30:33
SpamBayes Score 7.649671e-05
Marked as misclassified No
Message-id <1220718633.49.0.524686104721.issue1121@psf.upfronthosting.co.za>
In-reply-to
Content
From CPython:

>>> s.listen(5)
>>> s.shutdown(socket.SHUT_RDWR)
>>> 

From Jython:

>>> s.listen(5) 
>>> 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 812, in shutdown
    self.sock_impl.shutdownInput()
  File "/home/glyph/Projects/Jython/trunk/jython/dist/Lib/socket.py",
line 242, in shutdownInput
    self.jsocket.shutdownInput()
AttributeError: sun.nio.ch.ServerSocketAdaptor instance has no attribute
'shutdownInput'
History
Date User Action Args
2008-09-06 16:30:33glyphsetrecipients: + glyph
2008-09-06 16:30:33glyphsetmessageid: <1220718633.49.0.524686104721.issue1121@psf.upfronthosting.co.za>
2008-09-06 16:30:33glyphlinkissue1121 messages
2008-09-06 16:30:33glyphcreate