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

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


http://hg.python.org/cpython/rev/db17a49395c2
changeset:   80798:db17a49395c2
parent:      80794:5ad5efc847c7
parent:      80797:5182cc18b7b4
user:        Chris Jerdonek <chris.jerdonek at gmail.com>
date:        Sun Dec 09 18:22:21 2012 -0800
summary:
  Issue #16629: Merge IDLE test fix from 3.3.

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