Message4506

Author markku_hanninen
Recipients markku_hanninen
Date 2009-04-14.14:47:06
SpamBayes Score 1.7942531e-07
Marked as misclassified No
Message-id <1239720428.65.0.477106578213.issue1316@psf.upfronthosting.co.za>
In-reply-to
Content
Can be reproduced like this:

[hmm@bombadil ~]$ /opt/jython2.5b3/bin/jython
-Dpython.security.respectJavaAccessibility=false
Jython 2.5b3 (Release_2_5beta3:6092, Mar 10 2009, 15:34:57) 
[Java HotSpot(TM) Server VM (Sun Microsystems Inc.)] on java1.6.0_04
Type "help", "copyright", "credits" or "license" for more information.
>>> import urllib, socket
>>> socket.setdefaulttimeout(120)
>>> fp = urllib.urlopen("http://www.jython.org")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/opt/jython2.5b3/Lib/urllib.py", line 82, in urlopen
    return opener.open(url)
  File "/opt/jython2.5b3/Lib/urllib.py", line 190, in open
    return getattr(self, name)(url)
  File "/opt/jython2.5b3/Lib/urllib.py", line 190, in open
    return getattr(self, name)(url)
  File "/opt/jython2.5b3/Lib/urllib.py", line 325, in open_http
    h.endheaders()
  File "/opt/jython2.5b3/Lib/httplib.py", line 860, in endheaders
    self._send_output()
  File "/opt/jython2.5b3/Lib/httplib.py", line 732, in _send_output
    self.send(msg)
  File "/opt/jython2.5b3/Lib/httplib.py", line 711, in send
    self.sock.sendall(str)
  File "/opt/jython2.5b3/Lib/httplib.py", line 711, in send
    self.sock.sendall(str)
  File "<string>", line 1, in sendall
  File "/opt/jython2.5b3/Lib/socket.py", line 867, in send
    numwritten = self.sock_impl.write(s)
  File "/opt/jython2.5b3/Lib/socket.py", line 867, in send
    numwritten = self.sock_impl.write(s)
  File "/opt/jython2.5b3/Lib/socket.py", line 323, in write
    return self._do_write_net(buf)
  File "/opt/jython2.5b3/Lib/socket.py", line 307, in _do_write_net
    self.jsocket.getOutputStream().write(buf)
TypeError: write(): 1st arg can't be coerced to int
>>>
History
Date User Action Args
2009-04-14 14:47:08markku_hanninensetrecipients: + markku_hanninen
2009-04-14 14:47:08markku_hanninensetmessageid: <1239720428.65.0.477106578213.issue1316@psf.upfronthosting.co.za>
2009-04-14 14:47:08markku_hanninenlinkissue1316 messages
2009-04-14 14:47:07markku_hanninencreate