[issue12894] pydoc help("modules keyword") is failing when a module throws an exception at the import time

2011-09-04 Thread Christian S. Perone
New submission from Christian S. Perone : Pydoc is failing when running the ModuleScanner().run() when you execute: help("modules keyword") ... if some module throws an exception at the import time. See this example: >>> help("modules convolve") Here is a list of

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread Christian S. Perone
Christian S. Perone added the comment: Agree. -- ___ Python tracker <http://bugs.python.org/issue10695> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread Christian S. Perone
Christian S. Perone added the comment: Not from Python itself I think, but external, from users. -- ___ Python tracker <http://bugs.python.org/issue10

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread Christian S. Perone
Christian S. Perone added the comment: I don't know, by doing this on __init__ we can break a lot of legacy codes. -- ___ Python tracker <http://bugs.python.org/is

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-13 Thread Christian S. Perone
New submission from Christian S. Perone : When you use telnetlib with a "str" parameter as Port Number: tel = telnetlib.Telnet("10.0.2.9", "8123") tel.read_until("login: ") It works fine, except if you set the debuglevel: tel.set_debuglevel(30) Then th