This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hdima
Recipients hdima
Date 2008-08-29.12:43:45
SpamBayes Score 3.0424673e-07
Marked as misclassified No
Message-id <1220013826.6.0.647840298479.issue3725@psf.upfronthosting.co.za>
In-reply-to
Content
Simple example:

>>> from telnetlib import Telnet
>>> t = Telnet("google.com", 80)
>>> t.write("GET / HTTP/1.1\r\n")        
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/py3k/Lib/telnetlib.py", line 280, in write
    self.sock.sendall(buffer)
TypeError: sendall() argument 1 must be string or buffer, not str
>>> t.write(b"GET / HTTP/1.1\r\n")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/py3k/Lib/telnetlib.py", line 277, in write
    if IAC in buffer:
TypeError: Type str doesn't support the buffer API
History
Date User Action Args
2008-08-29 12:43:46hdimasetrecipients: + hdima
2008-08-29 12:43:46hdimasetmessageid: <1220013826.6.0.647840298479.issue3725@psf.upfronthosting.co.za>
2008-08-29 12:43:46hdimalinkissue3725 messages
2008-08-29 12:43:45hdimacreate