diff options
author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-12-10 02:22:21 (GMT) |
---|---|---|
committer | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-12-10 02:22:21 (GMT) |
commit | e53e44f3bb95bed675035d69a7605f6878159e2c (patch) | |
tree | 576f1951220f5e269fd646316b27b6b5a8ab0a48 /Lib/idlelib | |
parent | a6b292fbc76c784655d486db9b557734e7554833 (diff) | |
parent | af72f9ea9cbd559b99b54a1b388cf497ae08a5c7 (diff) | |
download | cpython-e53e44f3bb95bed675035d69a7605f6878159e2c.zip cpython-e53e44f3bb95bed675035d69a7605f6878159e2c.tar.gz cpython-e53e44f3bb95bed675035d69a7605f6878159e2c.tar.bz2 |
Issue #16629: Merge IDLE test fix from 3.3.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/CallTips.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/CallTips.py b/Lib/idlelib/CallTips.py index b3629c4..3c8c096 100644 --- a/Lib/idlelib/CallTips.py +++ b/Lib/idlelib/CallTips.py @@ -211,7 +211,7 @@ def main(): def test_builtins(): # if first line of a possibly multiline compiled docstring changes, # must change corresponding test string - test('int', "int(x[, base]) -> integer") + test('int', "int(x=0) -> integer") test('Int', Int.__doc__) test('types.MethodType', "method(function, instance)") test('list', "list() -> new empty list") |