diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-08 18:08:48 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-08 18:08:48 (GMT) |
commit | 1322f9e2d1a546328e53aa7d037bc37c3b47fc2e (patch) | |
tree | 8ff35a9c20d88090db0599bc1c1fd0a4b3a6d6c5 /Lib/lib2to3/tests | |
parent | 245c765d0a73e385ff00a982d2c60d0a96c94c74 (diff) | |
parent | 5e596769b025ce724e36aceeae52ce3c4c53c164 (diff) | |
download | cpython-1322f9e2d1a546328e53aa7d037bc37c3b47fc2e.zip cpython-1322f9e2d1a546328e53aa7d037bc37c3b47fc2e.tar.gz cpython-1322f9e2d1a546328e53aa7d037bc37c3b47fc2e.tar.bz2 |
Issue #18037: Do not escape '\u' and '\U' in raw strings.
Diffstat (limited to 'Lib/lib2to3/tests')
-rw-r--r-- | Lib/lib2to3/tests/test_fixers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py index 912bd4c..5b16bc3 100644 --- a/Lib/lib2to3/tests/test_fixers.py +++ b/Lib/lib2to3/tests/test_fixers.py @@ -2889,7 +2889,7 @@ class Test_unicode(FixerTestCase): self.check(b, a) b = r"""r'\\\u20ac\U0001d121\\u20ac'""" - a = r"""r'\\\\u20ac\\U0001d121\\u20ac'""" + a = r"""r'\\\u20ac\U0001d121\\u20ac'""" self.check(b, a) def test_bytes_literal_escape_u(self): |