Message3473
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 |
|
Date |
User |
Action |
Args |
2008-09-06 16:27:58 | glyph | set | recipients:
+ glyph |
2008-09-06 16:27:58 | glyph | set | messageid: <1220718478.73.0.822570265002.issue1120@psf.upfronthosting.co.za> |
2008-09-06 16:27:58 | glyph | link | issue1120 messages |
2008-09-06 16:27:58 | glyph | create | |
|