amyreese / fissix

backport of lib2to3, with enhancements
Other
45 stars 22 forks source link

Fixed long getting converted to int when used as a keyword argument #28

Closed AWhetter closed 3 years ago

AWhetter commented 3 years ago

Description

Currently a call to a function that uses long as the name of a keyword argument (eg f(long=True)) will cause the keyword argument itself to get converted to int (eg f(int=True)). This changes fixes this case so that the keyword remains as long.

amyreese commented 3 years ago

Thank you!