You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
9
test/simple_source/bug36/03_fn_defaults.py
Normal file
9
test/simple_source/bug36/03_fn_defaults.py
Normal file
@@ -0,0 +1,9 @@
|
||||
# Python 3.6 changes, yet again, the way deafult pairs are handled
|
||||
def foo1(bar, baz=1):
|
||||
return 1
|
||||
def foo2(bar, baz, qux=1):
|
||||
return 2
|
||||
def foo3(bar, baz=1, qux=2):
|
||||
return 3
|
||||
def foo4(bar, baz, qux=1, quux=2):
|
||||
return 4
|
Reference in New Issue
Block a user