diff options
author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-12-10 02:19:54 (GMT) |
---|---|---|
committer | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-12-10 02:19:54 (GMT) |
commit | af72f9ea9cbd559b99b54a1b388cf497ae08a5c7 (patch) | |
tree | 701af3942c7bf02831c4e5b9aafb19d6cb85f364 /Lib/idlelib | |
parent | 14857cf8fa34c46c514565764f91c6abeefc0829 (diff) | |
parent | 175196886ec6739494c3b757317951c91460f0dc (diff) | |
download | cpython-af72f9ea9cbd559b99b54a1b388cf497ae08a5c7.zip cpython-af72f9ea9cbd559b99b54a1b388cf497ae08a5c7.tar.gz cpython-af72f9ea9cbd559b99b54a1b388cf497ae08a5c7.tar.bz2 |
Issue #16629: Merge IDLE test fix from 3.2.
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") |