[issue16629] IDLE: Calltips test fails due to int docstring change

Chris Jerdonek report at bugs.python.org
Mon Dec 10 03:01:39 CET 2012


Chris Jerdonek added the comment:

FYI, in the 3.2 branch I get 4 failures rather than just the one due to int:

$ ./python.exe Lib/idlelib/CallTips.py
int - expected
'int(x[, base]) -> integer'
 - but got
'int(x=0) -> integer'
list.append - expected
'L.append(object) -> None -- append object to end'
 - but got
'L.append(object) -- append object to end'
[].append - expected
'L.append(object) -> None -- append object to end'
 - but got
'L.append(object) -- append object to end'
List.append - expected
'L.append(object) -> None -- append object to end'
 - but got
'L.append(object) -- append object to end'
4 of 41 tests failed

Also, what is the recommended way to run IDLE tests?  It doesn't seem to be a part of regrtest, and I didn't see this information in the devguide.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue16629>
_______________________________________


More information about the Python-bugs-list mailing list