summaryrefslogtreecommitdiff
path: root/Lib/test/test_codecs.py
Commit message (Expand)AuthorAgeFilesLines
* test_codecs now removes the temporay file (created by the test)Victor Stinner2011-05-231-7/+6
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-69/+69
* Issue #8941: decoding big endian UTF-32 data in UCS-2 builds could crashAntoine Pitrou2010-06-111-0/+25
* #8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the te...Georg Brandl2010-05-241-0/+2
* Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32Victor Stinner2010-05-221-3/+39
* Issue #6268: Fix seek() method of codecs.open(), don't read the BOM twiceVictor Stinner2010-05-221-0/+21
* fix escape_encode to return the correct consumed sizePhilip Jenvey2010-04-051-0/+3
* #691291: codecs.open() should not convert end of lines on reading and writing.Florent Xicluna2010-02-261-0/+15
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-2/+2
* Issue #6922: Fix an infinite loop when trying to decode an invalidGeorg Brandl2009-09-171-0/+12
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-4/+4
* Issue 3739: The unicode-internal encoder now reports the number of *characters*Walter Dörwald2009-05-061-2/+7
* The incremental decoder for utf-7 must preserve its state between calls.Amaury Forgeot d'Arc2007-11-201-2/+12
* Fix for #1444: utf_8_sig.StreamReader was (indirectly through decode())Walter Dörwald2007-11-191-0/+44
* Fix typo in comment.Walter Dörwald2007-11-191-1/+1
* Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.Walter Dörwald2007-08-171-0/+134
* Fix utf-8-sig incremental decoder, which didn't recognise a BOM when theWalter Dörwald2007-04-121-0/+5
* Change decode() so that it works with a buffer (i.e. unicode(..., 'utf-8-sig'))Walter Dörwald2006-11-231-0/+4
* Whitespace normalization.Tim Peters2006-11-031-2/+2
* I'm assuming this is correct, it fixes the tests so they pass againNeal Norwitz2006-10-291-0/+1
* Add tests for incremental codecs with an errorsWalter Dörwald2006-10-291-0/+24
* Bug #1586613: fix zlib and bz2 codecs' incremental en/decoders.Georg Brandl2006-10-291-0/+2
* Fix the new EncodedFile test to work with big endian platforms.Georg Brandl2006-10-291-2/+2
* Fix codecs.EncodedFile which did not use file_encoding in 2.5.0, andGeorg Brandl2006-10-291-1/+28
* Verify the crash due to EncodingMap not initialized does not returnNeal Norwitz2006-06-131-0/+6
* Add a BufferedIncrementalEncoder class that can be used for implementingWalter Dörwald2006-04-141-3/+70
* Call encode()/decode() with final==True as the last call in theWalter Dörwald2006-04-141-0/+4
* Add tests for the C APIs PyCodec_IncrementalEncoder() andWalter Dörwald2006-03-181-2/+14
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-151-0/+57
* If size is specified, try to read at least size characters.Walter Dörwald2006-03-061-5/+9
* Patch #1177307: UTF-8-Sig codec.Martin v. Löwis2006-01-081-0/+28
* Add tests to increase code coverage in Python/codecs.c and Python/exceptions.c.Walter Dörwald2005-11-171-0/+19
* Add tests for various error cases and for readbuffer_encode() andWalter Dörwald2005-11-171-2/+67
* Part of SF patch #1313939: Speedup charmap decoding by extendingWalter Dörwald2005-10-061-1/+36
* SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complainWalter Dörwald2005-08-301-1/+50
* Make IDNA return an empty string when the input is empty. Fixes #1163178.Martin v. Löwis2005-08-251-0/+6
* Make attributes and local variables in the StreamReader str objects insteadWalter Dörwald2005-07-201-0/+17
* Update test to the current readline() behaviour.Walter Dörwald2005-04-211-0/+2
* Fix for SF bug #1175396: readline() will now read one more character, ifWalter Dörwald2005-04-041-9/+82
* Reset internal buffers when seek() is called. This fixes SF bug #1156259.Walter Dörwald2005-03-141-0/+15
* Fix stupid typo: Don't read from a writer.Walter Dörwald2005-02-081-2/+2
* Add a test for UTF-16 reading where the byte sequence doesn't start withWalter Dörwald2005-02-041-0/+9
* Fix and test for SF bug #1098990: codec readline() splits lines apart.Walter Dörwald2005-01-101-0/+30
* Add a test that checks the basic functionality of every encoding.Walter Dörwald2004-12-291-1/+179
* The changes to the stateful codecs in 2.4 resulted in StreamReader.readline()Walter Dörwald2004-12-211-13/+80
* Trigger a few error cases in Modules/_codecsmodule.c.Walter Dörwald2004-10-281-0/+14
* SF #1048865: Fix a trivial typo that breaks StreamReader.readlines()Hye-Shik Chang2004-10-171-1/+12
* SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now supportWalter Dörwald2004-09-071-1/+117
* Add generic codecs.encode() and .decode() APIs that don't imposeMarc-André Lemburg2004-07-101-1/+11
* Whitespace normalization.Tim Peters2004-07-081-1/+1