From 175196886ec6739494c3b757317951c91460f0dc Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Sun, 9 Dec 2012 18:17:27 -0800 Subject: [PATCH] Issue #16629: Fix IDLE idlelib.CallTips test. Patch by Roger Serwy. This commit updates a test broken by the change made for issue #14783. --- Lib/idlelib/CallTips.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/CallTips.py b/Lib/idlelib/CallTips.py index b3629c447d7..3c8c096d23c 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")