diff options
author | Batuhan Taşkaya <batuhanosmantaskaya@gmail.com> | 2020-04-14 18:55:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 18:55:01 (GMT) |
commit | aade1cc453698e1bc48861b16955c2c2219ec521 (patch) | |
tree | b61a4c6cbcf79811cbd51c71da43597c9f54634f /Lib | |
parent | 96515e9f6785328c52ebc5d4ce60e0087a9adc2d (diff) | |
download | cpython-aade1cc453698e1bc48861b16955c2c2219ec521.zip cpython-aade1cc453698e1bc48861b16955c2c2219ec521.tar.gz cpython-aade1cc453698e1bc48861b16955c2c2219ec521.tar.bz2 |
bpo-395222: Correctly unparse unicode prefix in ast_unparse.c (GH-19512)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_future.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_future.py b/Lib/test/test_future.py index ebeb833..0522003 100644 --- a/Lib/test/test_future.py +++ b/Lib/test/test_future.py @@ -153,6 +153,7 @@ class AnnotationsFutureTestCase(unittest.TestCase): eq = self.assertAnnotationEqual eq('...') eq("'some_string'") + eq("u'some_string'") eq("b'\\xa3'") eq('Name') eq('None') |