mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'.
Change all occurrences of unichr to chr.
This commit is contained in:
parent
ef87d6ed94
commit
84fc66dd02
17 changed files with 45 additions and 66 deletions
|
|
@ -21,7 +21,7 @@ class TestCP932Map(test_multibytecodec_support.TestBase_Mapping,
|
|||
('\xff', '\uf8f3'),
|
||||
]
|
||||
for i in range(0xa1, 0xe0):
|
||||
supmaps.append((chr(i), unichr(i+0xfec0)))
|
||||
supmaps.append((chr(i), chr(i+0xfec0)))
|
||||
|
||||
|
||||
class TestEUCJPCOMPATMap(test_multibytecodec_support.TestBase_Mapping,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue