summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_codecs.py
Commit message (Expand)AuthorAgeFilesLines
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-5/+5
* #6373: SystemError in str.encode('latin1', 'surrogateescape')Amaury Forgeot d'Arc2009-06-291-0/+5
* Rename utf8b error handler to surrogateescape.Martin v. Löwis2009-05-101-10/+10
* Rename the surrogates error handler to surrogatepass.Martin v. Löwis2009-05-101-6/+6
* Merged revisions 72404-72406 via svnmerge fromWalter Dörwald2009-05-061-2/+7
* Issue #5915: Implement PEP 383, Non-decodable Bytes inMartin v. Löwis2009-05-051-0/+29
* Issue #3672: Reject surrogates in utf-8 codec; add surrogates errorMartin v. Löwis2009-05-021-2/+13
* Issue #4874: Most builtin decoders now reject unicode input.Antoine Pitrou2009-01-221-0/+31
* Issue #2394: implement more of the memoryview API.Antoine Pitrou2008-08-191-1/+1
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-3/+3
* Merged revisions 59056-59076 via svnmerge fromChristian Heimes2007-11-201-1/+11
* Merged revisions 59041-59055 via svnmerge fromGuido van Rossum2007-11-191-5/+48
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-2/+4
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-2/+3
* Fix the one failing test (can't decode twice).Guido van Rossum2007-08-291-1/+2
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-271-7/+7
* Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le andWalter Dörwald2007-08-161-0/+140
* Change readbuffer_encode() and charbuffer_encode() toWalter Dörwald2007-06-221-5/+5
* Patch by Ron Adam: Don't use u prefix in unicode error messagesWalter Dörwald2007-06-201-4/+4
* Rip out all codecs that can't work in a unicode/bytes world:Walter Dörwald2007-06-121-64/+0
* Fix tests for unicode-internal codec.Walter Dörwald2007-06-071-13/+13
* Make test_codecs work. The CJK codecs now use bytes instead of str8 forGuido van Rossum2007-05-171-5/+5
* Fix tests for string encodings.Walter Dörwald2007-05-171-2/+2
* Fix io.StringIO: String are stored encoded (using "unicode-internal" as theWalter Dörwald2007-05-161-4/+3
* Enhance the punycode decoder so that it can decodeWalter Dörwald2007-05-111-108/+109
* Use io.BytesIO instead of StringIO.StringIO in allWalter Dörwald2007-05-101-16/+16
* Fix punycode codec and tests.Walter Dörwald2007-05-101-25/+28
* Don't insist on cStringIO.Guido van Rossum2007-05-091-19/+20
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-7/+7
* Make the BOM constants in codecs.py bytes.Walter Dörwald2007-05-041-73/+72
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-230/+230
* Apply SF patch #1698994: Add getstate() and setstate()Walter Dörwald2007-04-161-6/+75
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-2/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+59
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-0/+6
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-5/+88
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-211-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