mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Merged revisions 81499,81506 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81499 | georg.brandl | 2010-05-24 16:29:07 -0500 (Mon, 24 May 2010) | 1 line #8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the tests, it was missing there.) ........ r81506 | benjamin.peterson | 2010-05-24 17:04:53 -0500 (Mon, 24 May 2010) | 1 line set svn:eol-style ........
This commit is contained in:
parent
556d8001df
commit
5a6214afe2
5 changed files with 711 additions and 4 deletions
|
@ -1039,8 +1039,8 @@ class UnicodeTest(string_tests.CommonTest,
|
|||
s = bytes(range(128))
|
||||
for encoding in (
|
||||
'cp037', 'cp1026',
|
||||
'cp437', 'cp500', 'cp737', 'cp775', 'cp850',
|
||||
'cp852', 'cp855', 'cp860', 'cp861', 'cp862',
|
||||
'cp437', 'cp500', 'cp720', 'cp737', 'cp775', 'cp850',
|
||||
'cp852', 'cp855', 'cp858', 'cp860', 'cp861', 'cp862',
|
||||
'cp863', 'cp865', 'cp866',
|
||||
'iso8859_10', 'iso8859_13', 'iso8859_14', 'iso8859_15',
|
||||
'iso8859_2', 'iso8859_3', 'iso8859_4', 'iso8859_5', 'iso8859_6',
|
||||
|
@ -1067,8 +1067,8 @@ class UnicodeTest(string_tests.CommonTest,
|
|||
s = bytes(range(128, 256))
|
||||
for encoding in (
|
||||
'cp037', 'cp1026',
|
||||
'cp437', 'cp500', 'cp737', 'cp775', 'cp850',
|
||||
'cp852', 'cp855', 'cp860', 'cp861', 'cp862',
|
||||
'cp437', 'cp500', 'cp720', 'cp737', 'cp775', 'cp850',
|
||||
'cp852', 'cp855', 'cp858', 'cp860', 'cp861', 'cp862',
|
||||
'cp863', 'cp865', 'cp866',
|
||||
'iso8859_10', 'iso8859_13', 'iso8859_14', 'iso8859_15',
|
||||
'iso8859_2', 'iso8859_4', 'iso8859_5',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue