From: Chris Jerdonek Date: Mon, 10 Dec 2012 02:17:27 +0000 (-0800) Subject: Issue #16629: Fix IDLE idlelib.CallTips test. Patch by Roger Serwy. X-Git-Tag: v3.3.1rc1~546^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=175196886ec6739494c3b757317951c91460f0dc;p=python Issue #16629: Fix IDLE idlelib.CallTips test. Patch by Roger Serwy. This commit updates a test broken by the change made for issue #14783. --- 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")