summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libcodecs.tex
Commit message (Collapse)AuthorAgeFilesLines
* add cp866 rowSkip Montanaro2004-07-021-0/+4
|
* link to the codecs page from the "".encode() description.Skip Montanaro2004-07-011-1/+1
|
* Add a new unicode codec: ptcp154 (Kazakh)Hye-Shik Chang2004-03-191-0/+4
|
* Add CJK codecs support as discussed on python-dev. (SF #873597)Hye-Shik Chang2004-01-171-9/+81
| | | | | Several style fixes are suggested by Martin v. Loewis and Marc-Andre Lemburg. Thanks!
* Added codec for bz2 compression.Raymond Hettinger2003-09-231-0/+5
|
* SF 810242. Fix doubled word errors.Raymond Hettinger2003-09-221-1/+1
|
* Minor typoRaymond Hettinger2003-09-011-1/+1
|
* SF patch#786531 'the the' typo. Contributed by George YoshidaRaymond Hettinger2003-08-121-1/+1
|
* A variety of markup-level adjustments.Fred Drake2003-07-161-6/+6
|
* Fix typo.Raymond Hettinger2003-06-181-1/+1
|
* - comment out \moduleauthor that broke formatting until the formattingFred Drake2003-04-301-15/+28
| | | | | tools can be fixed; added XXX comment - general markup fixes
* Fix spelling of cedillas.Martin v. Löwis2003-04-181-1/+1
|
* Implement IDNA (Internationalized Domain Names in Applications).Martin v. Löwis2003-04-181-1/+71
|
* Change the treatment of positions returned by PEP293Walter Dörwald2003-01-311-5/+16
| | | | | | | | | | | | | | | | error handers in the Unicode codecs: Negative positions are treated as being relative to the end of the input and out of bounds positions result in an IndexError. Also update the PEP and include an explanation of this in the documentation for codecs.register_error. Fixes a small bug in iconv_codecs: if the position from the callback is negative *add* it to the size instead of substracting it. From SF patch #677429.
* Document standard encodings.Martin v. Löwis2002-12-311-0/+343
|
* Document additional error handling names available through PEP 293.Walter Dörwald2002-11-191-2/+6
|
* Add documentation for the PEP 293 functionality:Walter Dörwald2002-11-071-3/+29
| | | | | | | | | | The errors attribute can be changed after the reader/writer is created. For encoding there are two additional errors values: "xmlcharrefreplace" and "backslashreplace". These values can be extended via register_error().
* Move introductory sentence to where it belongs.Walter Dörwald2002-11-021-3/+3
|
* Fix typo. Close SF Bug 606354.Raymond Hettinger2002-09-081-1/+1
|
* PEP 293 implemention (from SF patch http://www.python.org/sf/432401)Walter Dörwald2002-09-021-1/+38
|
* Add constants BOM_UTF8, BOM_UTF16, BOM_UTF16_LE, BOM_UTF16_BE,Walter Dörwald2002-06-041-10/+15
| | | | | | | | | | BOM_UTF32, BOM_UTF32_LE and BOM_UTF32_BE that represent the Byte Order Mark in UTF-8, UTF-16 and UTF-32 encodings for little and big endian systems. The old names BOM32_* and BOM64_* were off by a factor of 2. This closes SF bug http://www.python.org/sf/555360
* typoSkip Montanaro2002-04-171-1/+1
|
* added small clarification to the descriptions of encode() and decode()Skip Montanaro2002-04-161-2/+6
|
* Use the \note and \warning macros where appropriate.Fred Drake2001-10-201-3/+3
|
* Docs and News item for the codecs.py additions.Marc-André Lemburg2001-09-191-0/+32
|
* Added link to the "Python Codecs" project at SourceForge.Fred Drake2001-01-221-8/+18
| | | | | Changed markup of the list of values for the list of meaningful "errors" values.
* Marc-Andre Lemburg <mal@lemburg.com>:Fred Drake2000-10-121-10/+276
| | | | | | | Documentation for the codec base classes. Lots of markup adjustments by FLD. This closes SourceForge bug #115308, patch #101877.
* Fix small typos and markup consistency nits.Fred Drake2000-07-241-10/+11
|
* Make sure the \declaremodule uses the right name for the module!Fred Drake2000-04-061-20/+22
| | | | Clean up several markup problems & inconsistencies.
* Marc-Andre Lemburg <mal@lemburg.com>:Fred Drake2000-04-061-0/+126
codecs module documentation, with some preliminary markup adjustments from FLD.