aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_codecs.py
Commit message (Expand)AuthorAge
* Merged revisions 59056-59076 via svnmerge fromChristian Heimes2007-11-20
* Merged revisions 59041-59055 via svnmerge fromGuido van Rossum2007-11-19
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-06
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-16
* Fix the one failing test (can't decode twice).Guido van Rossum2007-08-29
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-27
* Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le andWalter Dörwald2007-08-16
* Change readbuffer_encode() and charbuffer_encode() toWalter Dörwald2007-06-22
* Patch by Ron Adam: Don't use u prefix in unicode error messagesWalter Dörwald2007-06-20
* Rip out all codecs that can't work in a unicode/bytes world:Walter Dörwald2007-06-12
* Fix tests for unicode-internal codec.Walter Dörwald2007-06-07
* Make test_codecs work. The CJK codecs now use bytes instead of str8 forGuido van Rossum2007-05-17
* Fix tests for string encodings.Walter Dörwald2007-05-17
* Fix io.StringIO: String are stored encoded (using "unicode-internal" as theWalter Dörwald2007-05-16
* Enhance the punycode decoder so that it can decodeWalter Dörwald2007-05-11
* Use io.BytesIO instead of StringIO.StringIO in allWalter Dörwald2007-05-10
* Fix punycode codec and tests.Walter Dörwald2007-05-10
* Don't insist on cStringIO.Guido van Rossum2007-05-09
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-07
* Make the BOM constants in codecs.py bytes.Walter Dörwald2007-05-04
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-02
* Apply SF patch #1698994: Add getstate() and setstate()Walter Dörwald2007-04-16
* Fix most trivially-findable print statements.Guido van Rossum2007-02-09
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-10
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-13
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-11
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-21
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-21
* If size is specified, try to read at least size characters.Walter Dörwald2006-03-06
* Patch #1177307: UTF-8-Sig codec.Martin v. Löwis2006-01-08
* Add tests to increase code coverage in Python/codecs.c and Python/exceptions.c.Walter Dörwald2005-11-17
* Add tests for various error cases and for readbuffer_encode() andWalter Dörwald2005-11-17
* Part of SF patch #1313939: Speedup charmap decoding by extendingWalter Dörwald2005-10-06
* SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complainWalter Dörwald2005-08-30
* Make IDNA return an empty string when the input is empty. Fixes #1163178.Martin v. Löwis2005-08-25
* Make attributes and local variables in the StreamReader str objects insteadWalter Dörwald2005-07-20
* Update test to the current readline() behaviour.Walter Dörwald2005-04-21
* Fix for SF bug #1175396: readline() will now read one more character, ifWalter Dörwald2005-04-04
* Reset internal buffers when seek() is called. This fixes SF bug #1156259.Walter Dörwald2005-03-14
* Fix stupid typo: Don't read from a writer.Walter Dörwald2005-02-08
* Add a test for UTF-16 reading where the byte sequence doesn't start withWalter Dörwald2005-02-04
* Fix and test for SF bug #1098990: codec readline() splits lines apart.Walter Dörwald2005-01-10
* Add a test that checks the basic functionality of every encoding.Walter Dörwald2004-12-29
* The changes to the stateful codecs in 2.4 resulted in StreamReader.readline()Walter Dörwald2004-12-21
* Trigger a few error cases in Modules/_codecsmodule.c.Walter Dörwald2004-10-28
* SF #1048865: Fix a trivial typo that breaks StreamReader.readlines()Hye-Shik Chang2004-10-17
* SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now supportWalter Dörwald2004-09-07
* Add generic codecs.encode() and .decode() APIs that don't imposeMarc-André Lemburg2004-07-10
* Whitespace normalization.Tim Peters2004-07-08
* Add test case for unicode(somestring, "idna").Martin v. Löwis2004-03-24