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 Mark McDonnell
Recipients Mark McDonnell, paul.moore, steve.dower, tim.golden, zach.ware
Date 2015-12-29.15:18:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1451402280.42.0.827762458184.issue25976@psf.upfronthosting.co.za>
In-reply-to
Content
I'm trying to use telnetlib in a simple script similar to the example show in the documentation. I get an error saying SyntaxError: invalid syntax. This is true with Windows 10, and XP, both using Python 2.7.11 32 bit.

Here's what happens in IDLE:
>>> import sys
>>> import telnetlib
>>> tn = telnetlib.Telnet(host=192.168.1.15, port=3490, timeout=5)
SyntaxError: invalid syntax
>>> tn = telnetlib.Telnet(192.168.1.15, 3490, 5)
SyntaxError: invalid syntax
>>> tn = telnetlib.Telnet(192.168.1.15)
SyntaxError: invalid syntax
>>> tn = telnetlib.Telnet(host=192.168.1.15, port=3490, timeout=5)
History
Date User Action Args
2015-12-29 15:18:00Mark McDonnellsetrecipients: + Mark McDonnell, paul.moore, tim.golden, zach.ware, steve.dower
2015-12-29 15:18:00Mark McDonnellsetmessageid: <1451402280.42.0.827762458184.issue25976@psf.upfronthosting.co.za>
2015-12-29 15:18:00Mark McDonnelllinkissue25976 messages
2015-12-29 15:18:00Mark McDonnellcreate