[issue16655] IDLE list.append calltips test failures

2014-01-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: When I moved tests from CallTips.py to test_calltips.py, I reduced but did not eliminate the use of builtins. I decided instead to explain in the file why there is no substitute for the real thing, and how to fix a simple mismatch like that reported here. ---

[issue16655] IDLE list.append calltips test failures

2014-01-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 779e5511d803 by Terry Jan Reedy in branch '2.7': Issue #16655: Explain why Idle's test_calltips has 'fragile' tests of builtins. http://hg.python.org/cpython/rev/779e5511d803 New changeset 4a505a901b2e by Terry Jan Reedy in branch '3.3': Issue #1665

[issue16655] IDLE list.append calltips test failures

2014-01-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Move CallTips tests to idle_tests ___ Python tracker ___ ___ Python-bugs-list mailing

[issue16655] IDLE list.append calltips test failures

2013-06-15 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3, Python 3.4 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue16655] IDLE list.append calltips test failures

2012-12-16 Thread Chris Jerdonek
Chris Jerdonek added the comment: Could you mock or monkey-patch what you are getting a tool tip for (i.e. set the "external" string you are checking for)? -- ___ Python tracker ___

[issue16655] IDLE list.append calltips test failures

2012-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: In 3.2.3 >>> list.append.__doc__ 'L.append(object) -- append object to end' In 3.3.0 >>> list.append.__doc__ 'L.append(object) -> None -- append object to end' I checked the other 6 pure mutation methods. .sort, .extend, .remove, and the new .clear have the sam

[issue16655] IDLE list.append calltips test failures

2012-12-09 Thread Chris Jerdonek
New submission from Chris Jerdonek: There are three IDLE test failures in the 3.2 branch: $ ./python.exe Lib/idlelib/CallTips.py 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)