summaryrefslogtreecommitdiffstats
path: root/Lib/encodings/mbcs.py
Commit message (Collapse)AuthorAgeFilesLines
* Correction of patch #1455898: In the mbcs decoder, set final=FalseMartin v. Löwis2006-08-021-19/+11
| | | | for stream decoder, but final=True for the decode function.
* Make import/lookup of mbcs fail on non-Windows systems.Martin v. Löwis2006-06-151-4/+8
|
* Patch #1455898: Incremental mode for "mbcs" codec.Martin v. Löwis2006-06-141-3/+4
|
* Fix typo.Walter Dörwald2006-03-151-2/+2
|
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-151-2/+16
| | | | | | | 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 Peters2002-08-081-1/+1
|
* Marc-Andre Lemburg:Guido van Rossum2000-03-281-1/+0
| | | | | | | | | | | | | | | The attached patch set includes a workaround to get Python with Unicode compile on BSDI 4.x (courtesy Thomas Wouters; the cause is a bug in the BSDI wchar.h header file) and Python interfaces for the MBCS codec donated by Mark Hammond. Also included are some minor corrections w/r to the docs of the new "es" and "es#" parser markers (use PyMem_Free() instead of free(); thanks to Mark Hammond for finding these). The unicodedata tests are now in a separate file (test_unicodedata.py) to avoid problems if the module cannot be found.
* MBCS codecs for Windows. Contributed by Mark Hammond.Guido van Rossum2000-03-281-0/+37