summaryrefslogtreecommitdiffstats
path: root/Lib/encodings/iso8859_11.py
Commit message (Collapse)AuthorAgeFilesLines
* Whitespace normalization.Tim Peters2006-03-151-1/+0
|
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-151-5/+19
| | | | | | | of tuple) that provides incremental decoders and encoders (a way to use stateful codecs without the stream API). Functions codecs.getincrementaldecoder() and codecs.getincrementalencoder() have been added.
* Whitespace normalization.Tim Peters2005-12-251-498/+497
|
* Cosmetic change: make all hex literals use upper case hex so that theyMarc-André Lemburg2005-10-241-297/+298
| | | | | | look more like the Unicode Consortium files. Add ending new-line to all source files.
* Removed the decoding_map from the codecs where this is possible.Marc-André Lemburg2005-10-241-597/+497
| | | | | Replaced the tis_620, cp1140 and koi8_u codecs with new ones based on custom mapping files.
* Replace the old charmap codecs with new ones generated from the currentMarc-André Lemburg2005-10-211-102/+609
| | | | | | | mapping tables available at ftp.unicode.org. These new codecs include and use character decoding tables which speeds up decoding by a few factors.
* Whitespace normalization.Tim Peters2004-08-071-95/+95
|
* Added new codecs and aliases for ISO_8859-11, ISO_8859-16 andMarc-André Lemburg2004-08-051-0/+137
TIS-620. Closes SF bug #1001895: Adding missing ISO 8859 codecs, especially Thai.