Skip to content
New issue

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

Fix bad backslash escape usage. #21

Merged
merged 1 commit into from
Feb 27, 2024
Merged

Conversation

da4089
Copy link

@da4089 da4089 commented Feb 27, 2024

Python 3.6 began reporting a DeprecationWarning for the use of backslash escape sequence where the second character isn't a valid Python escape sequence. Unlike C, in Python, the result of this is both characters (not just the second).

Python 3.12 changed that to a SyntaxWarning, the final step before making it a SyntaxError. So, we should fix it now.

First reported as skarim#164

Python 3.6 began reporting a DeprecationWarning for the use of
backslash escape sequence where the second character isn't a valid
Python escape sequence.  Unlike C, in Python, the result of this is
both characters (not just the second).

Python 3.12 changed that to a SyntaxWarning, the final step before
making it a SyntaxError.  So, we should fix it now.

First reported as skarim#164
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant