[issue35551] Encoding and alias issues

2019-06-05 Thread Inada Naoki
Inada Naoki added the comment: New changeset cb65202520e7959196a2df8215692de155bf0cc8 by Inada Naoki in branch 'master': bpo-35551: remove mac_centeuro encoding (GH-13856) https://github.com/python/cpython/commit/cb65202520e7959196a2df8215692de155bf0cc8 -- _

[issue35551] Encoding and alias issues

2019-06-05 Thread Inada Naoki
Change by Inada Naoki : -- pull_requests: +13731 pull_request: https://github.com/python/cpython/pull/13856 ___ Python tracker ___ _

[issue35551] Encoding and alias issues

2019-06-05 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue35551] Encoding and alias issues

2019-06-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset c4c15ed7a2c7c2a1983e88b89c244d121eb3e512 by Cheryl Sabella (Ashwin Ramaswami) in branch 'master': bpo-35551: encodings update (GH-11446) https://github.com/python/cpython/commit/c4c15ed7a2c7c2a1983e88b89c244d121eb3e512 -- nosy: +cheryl

[issue35551] Encoding and alias issues

2019-06-05 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: 1. Background for "tactis": https://github.com/python/cpython/commit/4fd73f0465ba11c22f0986d04cf91b387ed22c47 # The codecs for these encodings are not distributed with the # Python core, but are included here for reference, since the # locale

[issue35551] Encoding and alias issues

2019-04-05 Thread Inada Naoki
Change by Inada Naoki : -- assignee: -> lemburg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue35551] Encoding and alias issues

2019-02-24 Thread Inada Naoki
Inada Naoki added the comment: @lemburg I confirmed mac_latin1 and mac_centeuro are identical, even though they are generated from different sources. >>> from encodings import mac_latin2, mac_centeuro >>> mac_latin2.decoding_table == mac_centeuro.decoding_table True How do you think about re

[issue35551] Encoding and alias issues

2019-02-24 Thread BLKSerene
BLKSerene added the comment: I suppose that mac_centeuro can be removed since it is identical to mac_latin2, and there are already some aliases for mac_latin2. Then, mac_centeuro can be added as an alias for mac_latin2. I'm not sure about why latin_1 and iso8859_1 are both supported (they ar

[issue35551] Encoding and alias issues

2019-02-24 Thread Inada Naoki
Inada Naoki added the comment: Removing unused alias is OK. But I'm not sure about adding new alias. In encodings/ package, there are both of mac_centeuro.py and mac_latin2.py. Why alias is needed, without removing mac_centeuro.py? -- nosy: +inada.naoki versions: +Python 3.8 -Python 3

[issue35551] Encoding and alias issues

2019-01-06 Thread Ashwin Ramaswami
Change by Ashwin Ramaswami : -- keywords: +patch, patch, patch, patch pull_requests: +10899, 10900, 10901, 10902 stage: -> patch review ___ Python tracker ___

[issue35551] Encoding and alias issues

2019-01-06 Thread Ashwin Ramaswami
Change by Ashwin Ramaswami : -- keywords: +patch pull_requests: +10899 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue35551] Encoding and alias issues

2019-01-06 Thread Ashwin Ramaswami
Change by Ashwin Ramaswami : -- keywords: +patch, patch, patch pull_requests: +10899, 10900, 10902 stage: -> patch review ___ Python tracker ___ __

[issue35551] Encoding and alias issues

2019-01-06 Thread Ashwin Ramaswami
Change by Ashwin Ramaswami : -- keywords: +patch, patch pull_requests: +10899, 10900 stage: -> patch review ___ Python tracker ___

[issue35551] Encoding and alias issues

2019-01-06 Thread Ashwin Ramaswami
Ashwin Ramaswami added the comment: "iso8859_1" is already an alias for "latin_1", though. https://github.com/python/cpython/blob/master/Lib/encodings/aliases.py#L432 -- nosy: +epicfaace ___ Python tracker

[issue35551] Encoding and alias issues

2018-12-21 Thread BLKSerene
New submission from BLKSerene : There're some minor issues about encodings supported by Python. 1. "tis260" is the alias for "tactis", where "tis260" might be a typo, which should be tis620. And "tactis" is not a supported encoding by Python (and I can't find any information about this encodin