find_signatures -> get_signatures, see #1476

This commit is contained in:
Dave Halter
2020-01-22 01:10:38 +01:00
parent 58f54d8391
commit 8cc836e816
15 changed files with 66 additions and 66 deletions

View File

@@ -220,7 +220,7 @@ def test_param_endings(Script):
Params should be represented without the comma and whitespace they have
around them.
"""
sig, = Script('def x(a, b=5, c=""): pass\n x(').find_signatures()
sig, = Script('def x(a, b=5, c=""): pass\n x(').get_signatures()
assert [p.description for p in sig.params] == ['param a', 'param b=5', 'param c=""']