bblfsh / python-driver

GNU General Public License v3.0
10 stars 16 forks source link

Fix varargs in Python 2 files #217

Closed dennwc closed 4 years ago

dennwc commented 4 years ago

For Python 2 files varargs and kwargs in AST are strings and not objects as in Python 3 AST. We already fix kwargs to match Py3, but not varargs. This PR adds the same conversion for varargs as well.

Fixes #199

Signed-off-by: Denys Smirnov denis.smirnov.91@gmail.com


This change is Reviewable

ncordon commented 4 years ago
:lgtm: