aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_codeccallbacks.py
Commit message (Expand)AuthorAge
* gh-124665: Add `_PyCodec_UnregisterError` and `_codecs._unregister_error` (#1...Bénédikt Tran2024-09-29
* bpo-36819: Fix crashes in built-in encoders with weird error handlers (GH-28593)Serhiy Storchaka2022-05-02
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-01
* bpo-36297: remove "unicode_internal" codec (GH-12342)Inada Naoki2019-03-18
* bpo-32583: Fix possible crashing in builtin Unicode decoders (#5325)Xiang Zhang2018-01-31
* bpo-32618: Fix test_mutatingdecodehandler not testing test.mutating (#5269)Xiang Zhang2018-01-23
* #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-08
* Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-24
* Issue #24102: Fixed exception type checking in standard error handlers.Serhiy Storchaka2015-05-18
|\
| * Issue #24102: Fixed exception type checking in standard error handlers.Serhiy Storchaka2015-05-18
* | Use non-zero and non-last positions in error handler tests.Serhiy Storchaka2015-03-16
|\|
| * Use non-zero and non-last positions in error handler tests.Serhiy Storchaka2015-03-16
* | Increased coverage of standard codec error handlers.Serhiy Storchaka2015-03-15
|\|
| * Increased coverage of standard codec error handlers.Serhiy Storchaka2015-03-15
* | Issue #22286: The "backslashreplace" error handlers now works withSerhiy Storchaka2015-01-25
* | Issue #19676: Added the "namereplace" error handler.Serhiy Storchaka2014-11-25
* | Issue #21118: str.translate() now raises a ValueError, not a TypeError, if theVictor Stinner2014-04-05
|/
* Update various test modules to use unittest.main() for test discoveryBrett Cannon2013-06-12
* Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder.Serhiy Storchaka2013-01-29
|\
| * Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder.Serhiy Storchaka2013-01-29
| * Issue #15379: Fix passing of non-BMP characters as integers for the charmap d...Antoine Pitrou2012-09-23
* | #13406: fix more deprecation warnings and move the deprecation of unicode-int...Ezio Melotti2011-11-17
* | "unicode_internal" codec has been deprecated: fix related testsVictor Stinner2011-11-15
* | Port code page codec to Unicode API.Martin v. Löwis2011-11-04
* | Fix text failures when ctypes is not availableAntoine Pitrou2011-10-05
* | #13054: fix usage of sys.maxunicode after PEP-393.Ezio Melotti2011-10-04
* | Fix test_codeccallbacks for Windows: check size of wchar_t, not sys.maxunicodeVictor Stinner2011-09-29
* | Implement PEP 393.Martin v. Löwis2011-09-28
|/
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-20
* Issue #9804: ascii() now always represents unicode surrogate pairs asAntoine Pitrou2010-09-09
* Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629.Ezio Melotti2010-07-01
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-21
* Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 ...Benjamin Peterson2009-01-18
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-20
* rename HTMLParser to html.parser and htmlentitydefs to html.entities;Fred Drake2008-05-17
* Rename buffer -> bytearray.Guido van Rossum2007-11-21
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-06
* Remove a test case which is no longer valid.Georg Brandl2007-10-24
* Patch #1303: Adapt str8 constructor to bytes (now buffer) one.Georg Brandl2007-10-24
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-16
* 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
* Bytes (which are the input for decoding) are mutable now. If a decodingWalter Dörwald2007-07-30
* Patch by Ron Adam: Don't use u prefix in unicode error messagesWalter Dörwald2007-06-20
* Fix test_codeccallbacks.py: bytes has no % operator.Walter Dörwald2007-06-06
* Add 'U'/'U#' format characters to Py_BuildValue (and thusWalter Dörwald2007-05-18
* test_codeccallbacks.py passes again.Walter Dörwald2007-05-09
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-07
* Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'.Guido van Rossum2007-05-03
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-02