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
c4c15ed7
Commit
c4c15ed7
authored
Jun 05, 2019
by
Ashwin Ramaswami
Committed by
Cheryl Sabella
Jun 05, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-35551: encodings update (GH-11446)
parent
54edb04a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
Doc/library/codecs.rst
Doc/library/codecs.rst
+2
-1
Lib/encodings/aliases.py
Lib/encodings/aliases.py
+1
-3
Misc/NEWS.d/next/Core and Builtins/2019-01-18-16-16-27.bpo-35551.oF5pbO.rst
...ore and Builtins/2019-01-18-16-16-27.bpo-35551.oF5pbO.rst
+3
-0
No files found.
Doc/library/codecs.rst
View file @
c4c15ed7
...
...
@@ -1198,7 +1198,8 @@ particular, the following variants typically exist:
+-----------------+--------------------------------+--------------------------------+
|
mac_iceland | maciceland | Icelandic |
+-----------------+--------------------------------+--------------------------------+
|
mac_latin2 | maclatin2, maccentraleurope | Central and Eastern Europe |
|
mac_latin2 | maclatin2, maccentraleurope, | Central and Eastern Europe |
|
| mac_centeuro | |
+-----------------+--------------------------------+--------------------------------+
|
mac_roman | macroman, macintosh | Western Europe |
+-----------------+--------------------------------+--------------------------------+
...
...
Lib/encodings/aliases.py
View file @
c4c15ed7
...
...
@@ -448,6 +448,7 @@ aliases = {
# mac_latin2 codec
'maccentraleurope'
:
'mac_latin2'
,
'mac_centeuro'
:
'mac_latin2'
,
'maclatin2'
:
'mac_latin2'
,
# mac_roman codec
...
...
@@ -491,9 +492,6 @@ aliases = {
'sjisx0213'
:
'shift_jisx0213'
,
's_jisx0213'
:
'shift_jisx0213'
,
# tactis codec
'tis260'
:
'tactis'
,
# tis_620 codec
'tis620'
:
'tis_620'
,
'tis_620_0'
:
'tis_620'
,
...
...
Misc/NEWS.d/next/Core and Builtins/2019-01-18-16-16-27.bpo-35551.oF5pbO.rst
0 → 100644
View file @
c4c15ed7
Updated encodings:
- Removed the "tis260" encoding, which was an alias for the nonexistent "tactis" codec.
- Added "mac_centeuro" as an alias for the mac_latin2 encoding.
\ No newline at end of file
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