summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-12-10 02:22:21 (GMT)
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-12-10 02:22:21 (GMT)
commite53e44f3bb95bed675035d69a7605f6878159e2c (patch)
tree576f1951220f5e269fd646316b27b6b5a8ab0a48 /Lib/idlelib
parenta6b292fbc76c784655d486db9b557734e7554833 (diff)
parentaf72f9ea9cbd559b99b54a1b388cf497ae08a5c7 (diff)
downloadcpython-e53e44f3bb95bed675035d69a7605f6878159e2c.zip
cpython-e53e44f3bb95bed675035d69a7605f6878159e2c.tar.gz
cpython-e53e44f3bb95bed675035d69a7605f6878159e2c.tar.bz2
Issue #16629: Merge IDLE test fix from 3.3.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/CallTips.py2
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")