[Python-checkins] cpython (merge 3.2 -> 3.3): Issue #16629: Merge IDLE test fix from 3.2.

chris.jerdonek python-checkins at python.org
Mon Dec 10 03:25:08 CET 2012


http://hg.python.org/cpython/rev/5182cc18b7b4
changeset:   80797:5182cc18b7b4
branch:      3.3
parent:      80793:e39677feabe0
parent:      80796:181c170c6270
user:        Chris Jerdonek <chris.jerdonek at gmail.com>
date:        Sun Dec 09 18:19:54 2012 -0800
summary:
  Issue #16629: Merge IDLE test fix from 3.2.

files:
  Lib/idlelib/CallTips.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/idlelib/CallTips.py b/Lib/idlelib/CallTips.py
--- a/Lib/idlelib/CallTips.py
+++ b/Lib/idlelib/CallTips.py
@@ -211,7 +211,7 @@
     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")

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list