Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
6693e39d
Commit
6693e39d
authored
Mar 07, 2014
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whatsnew: cp273 codec (#10907797)
Also updated the docs and added the aliases mentioned by the references.
parent
1369c828
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
Doc/library/codecs.rst
Doc/library/codecs.rst
+4
-0
Doc/whatsnew/3.4.rst
Doc/whatsnew/3.4.rst
+3
-0
Lib/encodings/aliases.py
Lib/encodings/aliases.py
+5
-0
No files found.
Doc/library/codecs.rst
View file @
6693e39d
...
...
@@ -971,6 +971,10 @@ particular, the following variants typically exist:
+-----------------+--------------------------------+--------------------------------+
|
cp037 | IBM037, IBM039 | English |
+-----------------+--------------------------------+--------------------------------+
|
cp273 | 273, IBM273, csIBM273 | German |
|
| | |
|
| | .. versionadded:: 3.4 |
+-----------------+--------------------------------+--------------------------------+
|
cp424 | EBCDIC-CP-HE, IBM424 | Hebrew |
+-----------------+--------------------------------+--------------------------------+
|
cp437 | 437, IBM437 | English |
...
...
Doc/whatsnew/3.4.rst
View file @
6693e39d
...
...
@@ -364,6 +364,9 @@ Some smaller changes made to the core Python language are:
Contributed by Victor Stinner, Kang-Hao (Kenny) Lu and Serhiy Storchaka in
:issue:`12892`.
* New EBCDIC :ref:`codec <standard-encodings>` ``cp273``. (Contributed by
Michael Bierenfeld and Andrew Kuchling in :issue:`1097797`.)
New Modules
...
...
Lib/encodings/aliases.py
View file @
6693e39d
...
...
@@ -109,6 +109,11 @@ aliases = {
'1258'
:
'cp1258'
,
'windows_1258'
:
'cp1258'
,
# cp273 codec
'273'
:
'cp273'
,
'ibm273'
:
'cp273'
,
'csibm273'
:
'cp273'
,
# cp424 codec
'424'
:
'cp424'
,
'csibm424'
:
'cp424'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment