Am 21.08.2010 04:54, schrieb benjamin.peterson:
Author: benjamin.peterson Date: Sat Aug 21 04:54:44 2010 New Revision: 84229
Log: alias macintosh to mac_roman #843590
Modified: python/branches/py3k/Doc/library/codecs.rst python/branches/py3k/Lib/encodings/aliases.py python/branches/py3k/Misc/NEWS
Modified: python/branches/py3k/Doc/library/codecs.rst
--- python/branches/py3k/Doc/library/codecs.rst (original) +++ python/branches/py3k/Doc/library/codecs.rst Sat Aug 21 04:54:44 2010 @@ -1090,7 +1090,7 @@ +-----------------+--------------------------------+--------------------------------+ | mac_latin2 | maclatin2, maccentraleurope | Central and Eastern Europe | +-----------------+--------------------------------+--------------------------------+ -| mac_roman | macroman | Western Europe | +| mac_roman | macroman, macintosh | Western Europe | +-----------------+--------------------------------+--------------------------------+ | mac_turkish | macturkish | Turkish | +-----------------+--------------------------------+--------------------------------+
versionadded is missing.
Modified: python/branches/py3k/Lib/encodings/aliases.py
--- python/branches/py3k/Lib/encodings/aliases.py (original) +++ python/branches/py3k/Lib/encodings/aliases.py Sat Aug 21 04:54:44 2010 @@ -435,6 +435,7 @@ 'maclatin2' : 'mac_latin2',
# mac_roman codec
- 'macintosh' : 'macintosh', 'macroman' : 'mac_roman',
Should that be 'macintosh': 'mac_roman' instead?
Georg
Georg Brandl wrote:
Am 21.08.2010 04:54, schrieb benjamin.peterson:
Author: benjamin.peterson Date: Sat Aug 21 04:54:44 2010 New Revision: 84229
Log: alias macintosh to mac_roman #843590
Modified: python/branches/py3k/Doc/library/codecs.rst python/branches/py3k/Lib/encodings/aliases.py python/branches/py3k/Misc/NEWS
Modified: python/branches/py3k/Doc/library/codecs.rst
--- python/branches/py3k/Doc/library/codecs.rst (original) +++ python/branches/py3k/Doc/library/codecs.rst Sat Aug 21 04:54:44 2010 @@ -1090,7 +1090,7 @@ +-----------------+--------------------------------+--------------------------------+ | mac_latin2 | maclatin2, maccentraleurope | Central and Eastern Europe | +-----------------+--------------------------------+--------------------------------+ -| mac_roman | macroman | Western Europe | +| mac_roman | macroman, macintosh | Western Europe | +-----------------+--------------------------------+--------------------------------+ | mac_turkish | macturkish | Turkish | +-----------------+--------------------------------+--------------------------------+
versionadded is missing.
Where should that go ? Under the table somewhere ?
Modified: python/branches/py3k/Lib/encodings/aliases.py
--- python/branches/py3k/Lib/encodings/aliases.py (original) +++ python/branches/py3k/Lib/encodings/aliases.py Sat Aug 21 04:54:44 2010 @@ -435,6 +435,7 @@ 'maclatin2' : 'mac_latin2',
# mac_roman codec
- 'macintosh' : 'macintosh', 'macroman' : 'mac_roman',
Should that be 'macintosh': 'mac_roman' instead?
I've fixed that.
Am 21.08.2010 13:00, schrieb M.-A. Lemburg:
Georg Brandl wrote:
Am 21.08.2010 04:54, schrieb benjamin.peterson:
Author: benjamin.peterson Date: Sat Aug 21 04:54:44 2010 New Revision: 84229
Log: alias macintosh to mac_roman #843590
Modified: python/branches/py3k/Doc/library/codecs.rst python/branches/py3k/Lib/encodings/aliases.py python/branches/py3k/Misc/NEWS
Modified: python/branches/py3k/Doc/library/codecs.rst
--- python/branches/py3k/Doc/library/codecs.rst (original) +++ python/branches/py3k/Doc/library/codecs.rst Sat Aug 21 04:54:44 2010 @@ -1090,7 +1090,7 @@ +-----------------+--------------------------------+--------------------------------+ | mac_latin2 | maclatin2, maccentraleurope | Central and Eastern Europe | +-----------------+--------------------------------+--------------------------------+ -| mac_roman | macroman | Western Europe | +| mac_roman | macroman, macintosh | Western Europe | +-----------------+--------------------------------+--------------------------------+ | mac_turkish | macturkish | Turkish | +-----------------+--------------------------------+--------------------------------+
versionadded is missing.
Where should that go ? Under the table somewhere ?
I'd say yes.
Modified: python/branches/py3k/Lib/encodings/aliases.py
--- python/branches/py3k/Lib/encodings/aliases.py (original) +++ python/branches/py3k/Lib/encodings/aliases.py Sat Aug 21 04:54:44 2010 @@ -435,6 +435,7 @@ 'maclatin2' : 'mac_latin2',
# mac_roman codec
- 'macintosh' : 'macintosh', 'macroman' : 'mac_roman',
Should that be 'macintosh': 'mac_roman' instead?
I've fixed that.
Thanks.
Georg