summaryrefslogtreecommitdiffstats
path: root/Tools/unicode/gencodec.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove py3k deprecation warnings from these Unicode tools.Florent Xicluna2010-03-151-11/+8
|
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+1
|
* Patch #1359618: Speed-up charmap encoder.Martin v. Löwis2006-06-041-25/+26
|
* when generating python code prefer to generate valid python codeJack Diederich2006-05-261-3/+3
|
* Don't add multiple empty lines at the end of the codec. With this aWalter Dörwald2006-03-311-1/+1
| | | | regenerated codec should survive reindent.py unchanged.
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-151-20/+41
| | | | | | | 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-3/+3
|
* Apply some cosmetic fixes to the output of the script.Marc-André Lemburg2005-10-251-15/+28
| | | | Only include the decoding map if no table can be generated.
* Moved gencodec.py to the Tools/unicode/ directory.Marc-André Lemburg2005-10-211-0/+391
Added new support for decoding tables. Cleaned up the implementation a bit.