mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Issue #16629: Fix IDLE idlelib.CallTips test. Patch by Roger Serwy.
This commit updates a test broken by the change made for issue #14783.
This commit is contained in:
parent
806bfad457
commit
175196886e
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ def main():
|
||||||
def test_builtins():
|
def test_builtins():
|
||||||
# if first line of a possibly multiline compiled docstring changes,
|
# if first line of a possibly multiline compiled docstring changes,
|
||||||
# must change corresponding test string
|
# must change corresponding test string
|
||||||
test('int', "int(x[, base]) -> integer")
|
test('int', "int(x=0) -> integer")
|
||||||
test('Int', Int.__doc__)
|
test('Int', Int.__doc__)
|
||||||
test('types.MethodType', "method(function, instance)")
|
test('types.MethodType', "method(function, instance)")
|
||||||
test('list', "list() -> new empty list")
|
test('list', "list() -> new empty list")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue