summaryrefslogtreecommitdiff
path: root/Lib/test/inspect_fodder2.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-11-08 13:48:53 +0000
committerChristian Heimes <christian@cheimes.de>2007-11-08 13:48:53 +0000
commit3795b53e8d80be555b6599dbb30476fa66f01e55 (patch)
treedb84752c79c5f289cb09d714539ba61e2511314c /Lib/test/inspect_fodder2.py
parent563e33b1923620f20114ab3ac51898d025580afb (diff)
downloadcpython-git-3795b53e8d80be555b6599dbb30476fa66f01e55.tar.gz
Applied patch #1127 from Quentin Gallet Gilles: No tests for inspect.getfullargspec()
Diffstat (limited to 'Lib/test/inspect_fodder2.py')
-rw-r--r--Lib/test/inspect_fodder2.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/inspect_fodder2.py b/Lib/test/inspect_fodder2.py
index e49074c65c..7a9f84ea82 100644
--- a/Lib/test/inspect_fodder2.py
+++ b/Lib/test/inspect_fodder2.py
@@ -97,3 +97,11 @@ def f():
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