We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tr ranges need to be expanded for maketrans. The python maketrans call doesn't accept ranges, so wrong code is generated for like:
tr/a-z/A-Z/;
The text was updated successfully, but these errors were encountered:
Also the length of the strings in the 2 args to maketrans must be the same.
Sorry, something went wrong.
Fixed in my v0.956 https://github.com/snoopyjc/pythonizer/
No branches or pull requests
tr ranges need to be expanded for maketrans. The python maketrans call doesn't accept ranges, so wrong code is generated for like:
The text was updated successfully, but these errors were encountered: