You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A backslash-character pair that is not a valid escape sequence now generates a SyntaxWarning, instead of DeprecationWarning. For example, re.compile("\d+.\d+") now emits a SyntaxWarning ("\d" is an invalid escape sequence, use raw strings for regular expression: re.compile(r"\d+.\d+")). In a future Python version, SyntaxError will eventually be raised, instead of SyntaxWarning. (Contributed by Victor Stinner in python/cpython#98401.)
Version
2.4 (Default)
Which section is the problem?
Script Base
Please complete the following information
What happened (Describe the bug) ?
It gave me this:
D:\MHDDoS\start.py:168: SyntaxWarning: invalid escape sequence '\d'
IP = compile("(?:\d{1,3}.){3}\d{1,3}")
D:\MHDDoS\start.py:169: SyntaxWarning: invalid escape sequence '\d'
protocolRex = compile('"protocol":(\d+)')
Screenshots
https://imgur.com/a/jJzFpqM
Please provide a link to a minimal reproduction of the bug
No response
Relevant log output
Additional context
No response
Your code
The text was updated successfully, but these errors were encountered: