[issue5902] Stricter codec names
Matthew Barnett
report at bugs.python.org
Sat May 2 18:22:04 CEST 2009
Matthew Barnett <python at mrabarnett.plus.com> added the comment:
How about a 'full' form and a 'key' form generated by the function:
def codec_key(name):
return name.lower().replace("-", "").replace("_", "")
The key form would be the key to an available codec, and the key
generated by a user-supplied codec name would have to match one of those
keys.
For example:
Full: "UTF-8", key: "utf8".
Full: "ISO-8859-1", key: "iso88591".
----------
nosy: +mrabarnett
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue5902>
_______________________________________
More information about the Python-bugs-list
mailing list