|
Those syntax warnings are related to changes made in Python. In current Python, you can place a \ before any character, in a future version, that will only work for the supported Python escape sequences. Even now I don't like using random \s since 'hello\world' does not give the same result as 'hello\nothing' (the \n is a newline).
|