Skip to content
This repository has been archived by the owner on Oct 1, 2019. It is now read-only.

Starred arg ordering incorrect for python 2 #101

Closed
ryanashcraft opened this issue May 20, 2018 · 0 comments
Closed

Starred arg ordering incorrect for python 2 #101

ryanashcraft opened this issue May 20, 2018 · 0 comments
Labels

Comments

@ryanashcraft
Copy link
Collaborator

my_func_with_many_args(0, *args, var_e=5, var_j=6, **kwargs)

Becomes:

my_func_with_many_args(*args, **kwargs, 0, var_e=5, var_j=6)
ryanashcraft added a commit to ryanashcraft/plugin-python that referenced this issue May 20, 2018
ryanashcraft added a commit to ryanashcraft/plugin-python that referenced this issue May 20, 2018
patrick91 pushed a commit that referenced this issue May 21, 2018
* Add broken mixed call test for #101

* Fix starred args and kwargs ordering in calls for python 2
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants