commit | 3795b53e8d80be555b6599dbb30476fa66f01e55 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Thu Nov 08 13:48:53 2007 +0000 |
committer | Christian Heimes <christian@cheimes.de> | Thu Nov 08 13:48:53 2007 +0000 |
tree | db84752c79c5f289cb09d714539ba61e2511314c | |
parent | 563e33b1923620f20114ab3ac51898d025580afb [diff] [blame] |
Applied patch #1127 from Quentin Gallet Gilles: No tests for inspect.getfullargspec()
diff --git a/Lib/test/inspect_fodder2.py b/Lib/test/inspect_fodder2.py index e49074c..7a9f84e 100644 --- a/Lib/test/inspect_fodder2.py +++ b/Lib/test/inspect_fodder2.py
@@ -97,3 +97,11 @@ return 42 return X method_in_dynamic_class = f().g.im_func + +#line 101 +def keyworded(*arg1, arg2=1): + pass + +#line 105 +def annotated(arg1: list): + pass