diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2021-10-13 17:08:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-13 17:08:19 (GMT) |
commit | db2b6a20cd35781b2f5e798e880e57e6cf9b97aa (patch) | |
tree | 316124de83275184a817e1d543f9b8200c785466 /test_foo.py | |
parent | 1c831353816ff699b54e804047a7242a09e98f5b (diff) | |
download | cpython-db2b6a20cd35781b2f5e798e880e57e6cf9b97aa.zip cpython-db2b6a20cd35781b2f5e798e880e57e6cf9b97aa.tar.gz cpython-db2b6a20cd35781b2f5e798e880e57e6cf9b97aa.tar.bz2 |
bpo-45445: Fail if an invalid X-option is provided in the command line (GH-28823)
Diffstat (limited to 'test_foo.py')
-rw-r--r-- | test_foo.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test_foo.py b/test_foo.py new file mode 100644 index 0000000..a27be0f --- /dev/null +++ b/test_foo.py @@ -0,0 +1,3 @@ +def foo(a=3, *, c, d=2): + pass +foo() |