diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-09-11 22:23:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-11 22:23:25 (GMT) |
commit | 998b80636690ffbdb0a278810d9c031fad38631d (patch) | |
tree | a3a5f6986728062509fae6f5f0c843ddedae222d /Lib/test | |
parent | acd282fd5b3ca4de302b33c9361dbc433593c4ca (diff) | |
download | cpython-998b80636690ffbdb0a278810d9c031fad38631d.zip cpython-998b80636690ffbdb0a278810d9c031fad38631d.tar.gz cpython-998b80636690ffbdb0a278810d9c031fad38631d.tar.bz2 |
Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187)
This reverts commit 886483e2b9bbabf60ab769683269b873381dd5ee.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_unicode.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 73111f1..fb7bb2d 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -2655,10 +2655,6 @@ class CAPITest(unittest.TestCase): check_format(r"%A:'abc\xe9\uabcd\U0010ffff'", b'%%A:%A', 'abc\xe9\uabcd\U0010ffff') - # test %T (object type name) - check_format(r"type name: str", - b'type name: %T', 'text') - # test %V check_format('repr=abc', b'repr=%V', 'abc', b'xyz') |