We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 635a2a9 commit 9fb5cc8Copy full SHA for 9fb5cc8
mypy/fastparse.py
@@ -234,7 +234,7 @@ def parse(
234
try:
235
# Disable
236
# - deprecation warnings for 'invalid escape sequence' (Python 3.11 and below)
237
- # - syntax warnings for 'invalid escape sequence' (3.12+), and 'return in finally' (3.14+)
+ # - syntax warnings for 'invalid escape sequence' (3.12+) and 'return in finally' (3.14+)
238
with warnings.catch_warnings():
239
warnings.filterwarnings("ignore", category=DeprecationWarning)
240
warnings.filterwarnings("ignore", category=SyntaxWarning)
0 commit comments