summaryrefslogtreecommitdiff
path: root/Lib/codecs.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-32110: codecs.StreamReader.read(n) now returns not more than n (GH-4499) ...Miss Islington (bot)2017-11-291-3/+5
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-3/+3
* Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Code...Berker Peksag2015-07-301-4/+4
* Issue #19543: Emit deprecation warning for known non-text encodings.Serhiy Storchaka2015-05-311-1/+13
* Escaped backslashes in docstrings.Serhiy Storchaka2015-04-031-1/+1
* Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.Serhiy Storchaka2014-12-201-1/+7
* Fixed a bug in previous changeset: StreamReader returned '' instead of u''.Serhiy Storchaka2014-01-261-2/+0
* Issue #8260: The read(), readline() and readlines() methods ofSerhiy Storchaka2014-01-261-8/+7
* Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32Victor Stinner2010-05-221-3/+10
* Issue #6268: Fix seek() method of codecs.open(), don't read the BOM twiceVictor Stinner2010-05-221-0/+4
* #691291: codecs.open() should not convert end of lines on reading and writing.Florent Xicluna2010-02-261-4/+9
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-261-0/+48
* Fix codecs.EncodedFile which did not use file_encoding in 2.5.0, andGeorg Brandl2006-10-291-3/+30
* Add a BufferedIncrementalEncoder class that can be used for implementingWalter Dörwald2006-04-141-0/+27
* Fix wrong attribute name.Walter Dörwald2006-04-141-1/+1
* Change raise statement to PEP 8 style.Walter Dörwald2006-03-181-2/+1
* Add some versionadded info to new incremental codec docs and fix doco nits.Neal Norwitz2006-03-161-2/+2
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-151-11/+172
* If size is specified, try to read at least size characters.Walter Dörwald2006-03-061-1/+4
* Whitespace normalization.Tim Peters2005-12-251-2/+2
* Patch #1268314: Cache lines in StreamReader.readlines for performance.Martin v. Löwis2005-09-181-0/+37
* SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it readsWalter Dörwald2005-09-011-1/+3
* Return complete lines from codec stream readersMartin v. Löwis2005-08-241-3/+17
* Make attributes and local variables in the StreamReader str objects insteadWalter Dörwald2005-07-201-5/+7
* Fix comment.Walter Dörwald2005-04-211-2/+2
* If the data read from the bytestream in readline() ends in a '\r' read one moreWalter Dörwald2005-04-211-12/+4
* Fix typos.Walter Dörwald2005-04-041-2/+2
* Fix for SF bug #1175396: readline() will now read one more character, ifWalter Dörwald2005-04-041-0/+9
* typoSkip Montanaro2005-03-161-1/+1
* Add default value for "whence" argument.Walter Dörwald2005-03-141-1/+1
* Reset internal buffers when seek() is called. This fixes SF bug #1156259.Walter Dörwald2005-03-141-1/+11
* Build with --disable-unicode again. Fixes #1158607.Martin v. Löwis2005-03-081-5/+13
* Fix and test for SF bug #1098990: codec readline() splits lines apart.Walter Dörwald2005-01-101-2/+2
* The changes to the stateful codecs in 2.4 resulted in StreamReader.readline()Walter Dörwald2004-12-211-30/+41
* SF #1048865: Fix a trivial typo that breaks StreamReader.readlines()Hye-Shik Chang2004-10-171-1/+1
* SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now supportWalter Dörwald2004-09-071-43/+69
* Ignore sizehint argument. Fixes SF #844561.Marc-André Lemburg2004-02-261-10/+4
* Fix typos.Walter Dörwald2003-02-021-4/+4
* sys was already imported, remove second importNeal Norwitz2002-12-301-2/+0
* Patch to make _codecs a builtin module. This is necessary sinceMarc-André Lemburg2002-12-121-5/+15
* Add missing documentation for the PEP 293 functionality toWalter Dörwald2002-11-191-7/+22
* Add next() and __iter__() methods to StreamReader, StreamReaderWriterWalter Dörwald2002-11-061-0/+27
* PEP 293 implemention (from SF patch http://www.python.org/sf/432401)Walter Dörwald2002-09-021-1/+12
* Add constants BOM_UTF8, BOM_UTF16, BOM_UTF16_LE, BOM_UTF16_BE,Walter Dörwald2002-06-041-17/+32
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
* Set default value for readlines.sizehint to None. Change needed for 2.2.1Martin v. Löwis2002-03-051-1/+1
* Added new helpers for easy access to codecs. Docs will follow.Marc-André Lemburg2001-09-191-0/+42
* Fix typo in commentAndrew M. Kuchling2001-09-181-1/+1
* Patch #444359: Remove unused imports.Martin v. Löwis2001-08-021-1/+1
* Add dead imports of modules that are "magically" imported.Martin v. Löwis2001-07-311-0/+6