diff options
Diffstat (limited to 'tests/bytecode/mp-tests/fun3.py')
-rw-r--r-- | tests/bytecode/mp-tests/fun3.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/bytecode/mp-tests/fun3.py b/tests/bytecode/mp-tests/fun3.py new file mode 100644 index 0000000000..5336a70797 --- /dev/null +++ b/tests/bytecode/mp-tests/fun3.py @@ -0,0 +1,3 @@ +def f(a, b): + def g(c, d=None, *, e=True): + return a + b + c + d + e |