diff options
| author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-12-09 18:19:54 -0800 |
|---|---|---|
| committer | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-12-09 18:19:54 -0800 |
| commit | af72f9ea9cbd559b99b54a1b388cf497ae08a5c7 (patch) | |
| tree | 701af3942c7bf02831c4e5b9aafb19d6cb85f364 | |
| parent | 14857cf8fa34c46c514565764f91c6abeefc0829 (diff) | |
| parent | 175196886ec6739494c3b757317951c91460f0dc (diff) | |
| download | cpython-git-af72f9ea9cbd559b99b54a1b388cf497ae08a5c7.tar.gz | |
Issue #16629: Merge IDLE test fix from 3.2.
| -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 b3629c447d..3c8c096d23 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") |
