mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
bpo-38870: invalid escape sequence (GH-20240)
`/home/isidentical/cpython/cpython/Lib/test/test_unparse.py:333: DeprecationWarning: invalid escape sequence \X` Automerge-Triggered-By: @pablogsal
This commit is contained in:
parent
92327a9913
commit
dd74b6fde3
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ class UnparseTestCase(ASTTestCase):
|
||||||
'\r\\r\t\\t\n\\n',
|
'\r\\r\t\\t\n\\n',
|
||||||
'""">>> content = \"\"\"blabla\"\"\" <<<"""',
|
'""">>> content = \"\"\"blabla\"\"\" <<<"""',
|
||||||
r'foo\n\x00',
|
r'foo\n\x00',
|
||||||
'🐍⛎𩸽üéş^\X\BB\N{LONG RIGHTWARDS SQUIGGLE ARROW}'
|
'🐍⛎𩸽üéş^\N{LONG RIGHTWARDS SQUIGGLE ARROW}'
|
||||||
|
|
||||||
)
|
)
|
||||||
for docstring in docstrings:
|
for docstring in docstrings:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue