summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libcodecs.tex
Commit message (Collapse)AuthorAgeFilesLines
* Correct the grammarGeorge Yoshida2006-04-211-3/+3
|
* Fix a markup.George Yoshida2006-04-211-1/+1
| | | | This generated a ugly code, "P>".
* Typo, grammar fixes. This file could use another proofreading pass.Andrew M. Kuchling2006-04-211-25/+25
|
* Typo fixesAndrew M. Kuchling2006-04-211-6/+6
|
* Bug #1465619: rot13 codec decodes to a Unicode string.Georg Brandl2006-04-061-1/+1
|
* Clarify what the final argument does inWalter Dörwald2006-03-311-0/+4
| | | | IncrementalDecoder.decode().
* More \exception fixes.Georg Brandl2006-03-171-5/+5
|
* Add some versionadded info to new incremental codec docs and fix doco nits.Neal Norwitz2006-03-161-0/+6
|
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-151-8/+160
| | | | | | | 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.
* typoGeorg Brandl2006-03-091-1/+1
|
* Fix table header.Walter Dörwald2006-02-211-1/+1
|
* Add markup to new section in codecs docsGeorg Brandl2006-01-231-41/+42
|
* Fix typos.Walter Dörwald2006-01-091-3/+3
|
* Patch #1177307: UTF-8-Sig codec.Martin v. Löwis2006-01-081-0/+125
|
* SF patch #1364946: Add a reference link from the dcoumentation of the encodeWalter Dörwald2005-11-251-1/+1
| | | | and decode methods to the documentation of the default error handlers.
* add missing wordFred Drake2005-10-201-1/+1
|
* Bug #1245379: Add "unicode-1-1-utf-7" as an alias for "utf-7" as specifiedWalter Dörwald2005-10-091-1/+1
| | | | by RFC 1642.
* Return complete lines from codec stream readersMartin v. Löwis2005-08-241-1/+5
| | | | | | even if there is an exception in later lines, resulting in correct line numbers for decoding errors in source code. Fixes #1178484. Will backport to 2.4.
* SF Patch #1093896: miscellaneous doc typosRaymond Hettinger2005-01-011-1/+1
|
* fix typo in markupFred Drake2004-09-101-1/+1
|
* SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now supportWalter Dörwald2004-09-071-11/+16
| | | | | | | | | | | decoding incomplete input (when the input stream is temporarily exhausted). codecs.StreamReader now implements buffering, which enables proper readline support for the UTF-16 decoders. codecs.StreamReader.read() has a new argument chars which specifies the number of characters to return. codecs.StreamReader.readline() and codecs.StreamReader.readlines() have a new argument keepends. Trailing "\n"s will be stripped from the lines if keepends is false. Added C APIs PyUnicode_DecodeUTF8Stateful and PyUnicode_DecodeUTF16Stateful.
* Bring CJKCodecs 1.1 into trunk. This completely reorganizes sourceHye-Shik Chang2004-07-181-1/+17
| | | | | | and installed layouts to make maintenance simple and easy. And it also adds four new codecs; big5hkscs, euc-jis-2004, shift-jis-2004 and iso2022-jp-2004.
* Change CJK encoding aliases to their most popular variation ofHye-Shik Chang2004-07-171-14/+14
| | | | | hyphen and underscores in consistency of non-CJK aliases. (Spotted by Mike Brown at SF #969415)
* 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.