Кавычки как одинарные так и двойные.
In [23]: "test\"
------------------------------------------------------------
File "<ipython console>", line 1
"test\"
^
SyntaxError: EOL while scanning single-quoted string
In [24]: "test\".strip("\")
------------------------------------------------------------
File "<ipython console>", line 1
"test\".strip("\")
^
SyntaxError: invalid token
In [25]: from re import escape
In [26]: escape("test\")
------------------------------------------------------------
File "<ipython console>", line 1
escape("test\")
SyntaxError: EOL while scanning single-quoted string