Message3691

Author amak
Recipients amak, frt
Date 2008-10-19.11:12:21
SpamBayes Score 5.7914784e-13
Marked as misclassified No
Message-id <1224414742.14.0.0394725454041.issue1154@psf.upfronthosting.co.za>
In-reply-to
Content
This is now fixed in the 2.2 branch.

Jython 2.2.1 on java1.4.2_17
Type "copyright", "credits" or "license" for more information.
>>> import socket
>>> s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
>>> s.connect( ('localhost', 80) )
>>> s.settimeout(3)
>>> s.recv(8)
Traceback (innermost last):
  File "<console>", line 1, in ?
  File "C:\jython\release_22_maint\jython\dist\Lib\socket.py", line 789,
in recv
timeout: timed out

If you want to get the updated module, you can wait until a 2.2.2
release, or you can download it from SVN

https://jython.svn.sourceforge.net/svnroot/jython/branches/Release_2_2maint/jython/Lib/socket.py

I will mark this bug report as fixed when the bug is also fixed on
trunk, which will be in a few days, after some multiple platform testing.

Also modified the bug description to be more precise.
History
Date User Action Args
2008-10-19 11:12:22amaksetmessageid: <1224414742.14.0.0394725454041.issue1154@psf.upfronthosting.co.za>
2008-10-19 11:12:22amaksetrecipients: + amak, frt
2008-10-19 11:12:21amaklinkissue1154 messages
2008-10-19 11:12:21amakcreate