diff options
-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") |