| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,... | Christian Heimes | 2008-03-26 | 1 | -0/+48 |
* | Fix codecs.EncodedFile which did not use file_encoding in 2.5.0, and | Georg Brandl | 2006-10-29 | 1 | -3/+30 |
* | Add a BufferedIncrementalEncoder class that can be used for implementing | Walter Dörwald | 2006-04-14 | 1 | -0/+27 |
* | Fix wrong attribute name. | Walter Dörwald | 2006-04-14 | 1 | -1/+1 |
* | Change raise statement to PEP 8 style. | Walter Dörwald | 2006-03-18 | 1 | -2/+1 |
* | Add some versionadded info to new incremental codec docs and fix doco nits. | Neal Norwitz | 2006-03-16 | 1 | -2/+2 |
* | Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclass | Walter Dörwald | 2006-03-15 | 1 | -11/+172 |
* | If size is specified, try to read at least size characters. | Walter Dörwald | 2006-03-06 | 1 | -1/+4 |
* | Whitespace normalization. | Tim Peters | 2005-12-25 | 1 | -2/+2 |
* | Patch #1268314: Cache lines in StreamReader.readlines for performance. | Martin v. Löwis | 2005-09-18 | 1 | -0/+37 |
* | SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it reads | Walter Dörwald | 2005-09-01 | 1 | -1/+3 |
* | Return complete lines from codec stream readers | Martin v. Löwis | 2005-08-24 | 1 | -3/+17 |
* | Make attributes and local variables in the StreamReader str objects instead | Walter Dörwald | 2005-07-20 | 1 | -5/+7 |
* | Fix comment. | Walter Dörwald | 2005-04-21 | 1 | -2/+2 |
* | If the data read from the bytestream in readline() ends in a '\r' read one more | Walter Dörwald | 2005-04-21 | 1 | -12/+4 |
* | Fix typos. | Walter Dörwald | 2005-04-04 | 1 | -2/+2 |
* | Fix for SF bug #1175396: readline() will now read one more character, if | Walter Dörwald | 2005-04-04 | 1 | -0/+9 |
* | typo | Skip Montanaro | 2005-03-16 | 1 | -1/+1 |
* | Add default value for "whence" argument. | Walter Dörwald | 2005-03-14 | 1 | -1/+1 |
* | Reset internal buffers when seek() is called. This fixes SF bug #1156259. | Walter Dörwald | 2005-03-14 | 1 | -1/+11 |
* | Build with --disable-unicode again. Fixes #1158607. | Martin v. Löwis | 2005-03-08 | 1 | -5/+13 |
* | Fix and test for SF bug #1098990: codec readline() splits lines apart. | Walter Dörwald | 2005-01-10 | 1 | -2/+2 |
* | The changes to the stateful codecs in 2.4 resulted in StreamReader.readline() | Walter Dörwald | 2004-12-21 | 1 | -30/+41 |
* | SF #1048865: Fix a trivial typo that breaks StreamReader.readlines() | Hye-Shik Chang | 2004-10-17 | 1 | -1/+1 |
* | SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support | Walter Dörwald | 2004-09-07 | 1 | -43/+69 |
* | Ignore sizehint argument. Fixes SF #844561. | Marc-André Lemburg | 2004-02-26 | 1 | -10/+4 |
* | Fix typos. | Walter Dörwald | 2003-02-02 | 1 | -4/+4 |
* | sys was already imported, remove second import | Neal Norwitz | 2002-12-30 | 1 | -2/+0 |
* | Patch to make _codecs a builtin module. This is necessary since | Marc-André Lemburg | 2002-12-12 | 1 | -5/+15 |
* | Add missing documentation for the PEP 293 functionality to | Walter Dörwald | 2002-11-19 | 1 | -7/+22 |
* | Add next() and __iter__() methods to StreamReader, StreamReaderWriter | Walter Dörwald | 2002-11-06 | 1 | -0/+27 |
* | PEP 293 implemention (from SF patch http://www.python.org/sf/432401) | Walter Dörwald | 2002-09-02 | 1 | -1/+12 |
* | Add constants BOM_UTF8, BOM_UTF16, BOM_UTF16_LE, BOM_UTF16_BE, | Walter Dörwald | 2002-06-04 | 1 | -17/+32 |
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
* | Set default value for readlines.sizehint to None. Change needed for 2.2.1 | Martin v. Löwis | 2002-03-05 | 1 | -1/+1 |
* | Added new helpers for easy access to codecs. Docs will follow. | Marc-André Lemburg | 2001-09-19 | 1 | -0/+42 |
* | Fix typo in comment | Andrew M. Kuchling | 2001-09-18 | 1 | -1/+1 |
* | Patch #444359: Remove unused imports. | Martin v. Löwis | 2001-08-02 | 1 | -1/+1 |
* | Add dead imports of modules that are "magically" imported. | Martin v. Löwis | 2001-07-31 | 1 | -0/+6 |
* | Whitespace normalization. | Tim Peters | 2001-05-29 | 1 | -1/+1 |
* | Moved the encoding map building logic from the individual mapping | Marc-André Lemburg | 2001-05-16 | 1 | -0/+21 |
* | Just changed "x,y" to "x, y" everywhere (i.e., inserted horizontal space | Tim Peters | 2001-05-15 | 1 | -37/+34 |
* | added __all__ lists to a number of Python modules | Skip Montanaro | 2001-01-20 | 1 | -0/+3 |
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -7/+7 |
* | This patch changes the default behaviour of the builtin charmap | Marc-André Lemburg | 2001-01-03 | 1 | -0/+15 |
* | (Patch #102698) Fix for a bug reported by Wade Leftwich: | Andrew M. Kuchling | 2000-12-10 | 1 | -4/+4 |
* | Remove redundent information from a docstring. | Fred Drake | 2000-10-02 | 1 | -3/+0 |
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -2/+2 |
* | Marc-Andre Lemburg <mal@lemburg.com>: | Marc-André Lemburg | 2000-06-21 | 1 | -1/+6 |
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-05-01 | 1 | -2/+2 |