Skip to content

Commit

Permalink
Add additional test case for multiple kwargs in Python3 function
Browse files Browse the repository at this point in the history
  • Loading branch information
CarrBen committed Feb 11, 2025
1 parent d8d86e9 commit ad675e5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
Binary file modified tests/compiled/test_functions_py3.3.0.pyc
Binary file not shown.
Binary file modified tests/compiled/test_functions_py3.3.4.pyc
Binary file not shown.
3 changes: 3 additions & 0 deletions tests/input/test_functions_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,6 @@ def x7c(foo = 1, *, bar, **kwargs):

def x7d(foo = 1, *, bar = 2, **kwargs):
pass

def x7e(foo = 1, *, bar = 2, baz = 3, **kwargs):
pass
4 changes: 4 additions & 0 deletions tests/tokenized/test_functions_py3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,7 @@ pass <EOL>
def x7d ( foo = 1 , * , bar = 2 , ** kwargs ) : <EOL>
<INDENT>
pass <EOL>
<OUTDENT>
def x7e ( foo = 1 , * , bar = 2 , baz = 3 , ** kwargs ) : <EOL>
<INDENT>
pass <EOL>

0 comments on commit ad675e5

Please sign in to comment.