Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SF Patch #1093896: miscellaneous doc typos | Raymond Hettinger | 2005-01-01 | 1 | -1/+1 |
| | |||||
* | fix typo in markup | Fred Drake | 2004-09-10 | 1 | -1/+1 |
| | |||||
* | SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support | Walter Dörwald | 2004-09-07 | 1 | -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 source | Hye-Shik Chang | 2004-07-18 | 1 | -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 of | Hye-Shik Chang | 2004-07-17 | 1 | -14/+14 |
| | | | | | hyphen and underscores in consistency of non-CJK aliases. (Spotted by Mike Brown at SF #969415) | ||||
* | add cp866 row | Skip Montanaro | 2004-07-02 | 1 | -0/+4 |
| | |||||
* | link to the codecs page from the "".encode() description. | Skip Montanaro | 2004-07-01 | 1 | -1/+1 |
| | |||||
* | Add a new unicode codec: ptcp154 (Kazakh) | Hye-Shik Chang | 2004-03-19 | 1 | -0/+4 |
| | |||||
* | Add CJK codecs support as discussed on python-dev. (SF #873597) | Hye-Shik Chang | 2004-01-17 | 1 | -9/+81 |
| | | | | | Several style fixes are suggested by Martin v. Loewis and Marc-Andre Lemburg. Thanks! | ||||
* | Added codec for bz2 compression. | Raymond Hettinger | 2003-09-23 | 1 | -0/+5 |
| | |||||
* | SF 810242. Fix doubled word errors. | Raymond Hettinger | 2003-09-22 | 1 | -1/+1 |
| | |||||
* | Minor typo | Raymond Hettinger | 2003-09-01 | 1 | -1/+1 |
| | |||||
* | SF patch#786531 'the the' typo. Contributed by George Yoshida | Raymond Hettinger | 2003-08-12 | 1 | -1/+1 |
| | |||||
* | A variety of markup-level adjustments. | Fred Drake | 2003-07-16 | 1 | -6/+6 |
| | |||||
* | Fix typo. | Raymond Hettinger | 2003-06-18 | 1 | -1/+1 |
| | |||||
* | - comment out \moduleauthor that broke formatting until the formatting | Fred Drake | 2003-04-30 | 1 | -15/+28 |
| | | | | | tools can be fixed; added XXX comment - general markup fixes | ||||
* | Fix spelling of cedillas. | Martin v. Löwis | 2003-04-18 | 1 | -1/+1 |
| | |||||
* | Implement IDNA (Internationalized Domain Names in Applications). | Martin v. Löwis | 2003-04-18 | 1 | -1/+71 |
| | |||||
* | Change the treatment of positions returned by PEP293 | Walter Dörwald | 2003-01-31 | 1 | -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öwis | 2002-12-31 | 1 | -0/+343 |
| | |||||
* | Document additional error handling names available through PEP 293. | Walter Dörwald | 2002-11-19 | 1 | -2/+6 |
| | |||||
* | Add documentation for the PEP 293 functionality: | Walter Dörwald | 2002-11-07 | 1 | -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örwald | 2002-11-02 | 1 | -3/+3 |
| | |||||
* | Fix typo. Close SF Bug 606354. | Raymond Hettinger | 2002-09-08 | 1 | -1/+1 |
| | |||||
* | PEP 293 implemention (from SF patch http://www.python.org/sf/432401) | Walter Dörwald | 2002-09-02 | 1 | -1/+38 |
| | |||||
* | Add constants BOM_UTF8, BOM_UTF16, BOM_UTF16_LE, BOM_UTF16_BE, | Walter Dörwald | 2002-06-04 | 1 | -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 | ||||
* | typo | Skip Montanaro | 2002-04-17 | 1 | -1/+1 |
| | |||||
* | added small clarification to the descriptions of encode() and decode() | Skip Montanaro | 2002-04-16 | 1 | -2/+6 |
| | |||||
* | Use the \note and \warning macros where appropriate. | Fred Drake | 2001-10-20 | 1 | -3/+3 |
| | |||||
* | Docs and News item for the codecs.py additions. | Marc-André Lemburg | 2001-09-19 | 1 | -0/+32 |
| | |||||
* | Added link to the "Python Codecs" project at SourceForge. | Fred Drake | 2001-01-22 | 1 | -8/+18 |
| | | | | | Changed markup of the list of values for the list of meaningful "errors" values. | ||||
* | Marc-Andre Lemburg <mal@lemburg.com>: | Fred Drake | 2000-10-12 | 1 | -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 Drake | 2000-07-24 | 1 | -10/+11 |
| | |||||
* | Make sure the \declaremodule uses the right name for the module! | Fred Drake | 2000-04-06 | 1 | -20/+22 |
| | | | | Clean up several markup problems & inconsistencies. | ||||
* | Marc-Andre Lemburg <mal@lemburg.com>: | Fred Drake | 2000-04-06 | 1 | -0/+126 |
codecs module documentation, with some preliminary markup adjustments from FLD. |