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