diff options
Diffstat (limited to 'Lib/test/inspect_fodder2.py')
-rw-r--r-- | Lib/test/inspect_fodder2.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/inspect_fodder2.py b/Lib/test/inspect_fodder2.py index d244935..bd7106f 100644 --- a/Lib/test/inspect_fodder2.py +++ b/Lib/test/inspect_fodder2.py @@ -105,3 +105,7 @@ def keyworded(*arg1, arg2=1): #line 105 def annotated(arg1: list): pass + +#line 109 +def keyword_only_arg(*, arg): + pass |