[Python-Dev] r84229 - in python/branches/py3k: Doc/library/codecs.rst Lib/encodings/aliases.py Misc/NEWS (original) (raw)
M.-A. Lemburg mal at egenix.com
Sat Aug 21 13:00:14 CEST 2010
- Previous message: [Python-Dev] r84229 - in python/branches/py3k: Doc/library/codecs.rst Lib/encodings/aliases.py Misc/NEWS
- Next message: [Python-Dev] r84229 - in python/branches/py3k: Doc/library/codecs.rst Lib/encodings/aliases.py Misc/NEWS
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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 macroman #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 @@ +-----------------+--------------------------------+--------------------------------+ | maclatin2 | maclatin2, maccentraleurope | Central and Eastern Europe | +-----------------+--------------------------------+--------------------------------+ -| macroman | macroman | Western Europe | +| macroman | macroman, macintosh | Western Europe | +-----------------+--------------------------------+--------------------------------+ | macturkish | 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' : 'maclatin2',
# macroman codec + 'macintosh' : 'macintosh', 'macroman' : 'macroman', Should that be 'macintosh': 'macroman' instead?
I've fixed that.
-- Marc-Andre Lemburg eGenix.com
Professional Python Services directly from the Source (#1, Aug 21 2010)
Python/Zope Consulting and Support ... http://www.egenix.com/ mxODBC.Zope.Database.Adapter ... http://zope.egenix.com/ mxODBC, mxDateTime, mxTextTools ... http://python.egenix.com/
::: Try our new mxODBC.Connect Python Database Interface for free ! ::::
eGenix.com Software, Skills and Services GmbH Pastor-Loeh-Str.48 D-40764 Langenfeld, Germany. CEO Dipl.-Math. Marc-Andre Lemburg Registered at Amtsgericht Duesseldorf: HRB 46611 http://www.egenix.com/company/contact/
- Previous message: [Python-Dev] r84229 - in python/branches/py3k: Doc/library/codecs.rst Lib/encodings/aliases.py Misc/NEWS
- Next message: [Python-Dev] r84229 - in python/branches/py3k: Doc/library/codecs.rst Lib/encodings/aliases.py Misc/NEWS
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]