diff options
Diffstat (limited to 'Lib/idlelib/idle_test/test_calltip.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_calltip.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/idle_test/test_calltip.py b/Lib/idlelib/idle_test/test_calltip.py index 15e1ff3f3cf..28c196a4267 100644 --- a/Lib/idlelib/idle_test/test_calltip.py +++ b/Lib/idlelib/idle_test/test_calltip.py @@ -79,6 +79,7 @@ class Get_argspecTest(unittest.TestCase): tiptest(list.append, '(self, object, /)' + append_doc) tiptest(List.append, '(self, object, /)' + append_doc) tiptest([].append, '(object, /)' + append_doc) + # The use of 'object' above matches the signature text. tiptest(types.MethodType, '(function, instance, /)\n' |