aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/codecs.c
Commit message (Expand)AuthorAge
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-07
* Issue #28858: Remove _PyObject_CallArg1() macroVictor Stinner2016-12-05
* Replace PyObject_CallFunction() with fastcallVictor Stinner2016-12-01
* Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-20
* Issue #28510: Clean up decoding error handlers.Serhiy Storchaka2016-10-23
* Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-15
* Issue #24993: Handle import error in namereplace error handlerVictor Stinner2015-09-03
* Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-30
|\
| * Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-30
* | 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
* | Issue #23450: Fixed possible integer overflows.Serhiy Storchaka2015-02-16
* | Issue #22286: The "backslashreplace" error handlers now works withSerhiy Storchaka2015-01-25
* | correct assertionBenjamin Peterson2014-11-26
* | fix variable nameBenjamin Peterson2014-11-26
* | Issue #19676: Fixed integer overflow issue in "namereplace" error handler.Serhiy Storchaka2014-11-26
* | Issue #19676: Added the "namereplace" error handler.Serhiy Storchaka2014-11-25
* | Issue #22518: Fixed integer overflow issues in "backslashreplace",Serhiy Storchaka2014-10-04
|\|
| * Issue #22518: Fixed integer overflow issues in "backslashreplace",Serhiy Storchaka2014-10-04
* | Fixed reference leak in the "backslashreplace" error handler.Serhiy Storchaka2014-09-23
|\|
| * Fixed reference leak in the "backslashreplace" error handler.Serhiy Storchaka2014-09-23
* | Merge fix for issue #22166 from 3.4Nick Coghlan2014-09-15
|\|
| * Issue #22166: clear codec caches in test_codecsNick Coghlan2014-09-15
* | Issue #13916: Fix surrogatepass error handler on WindowsVictor Stinner2014-05-16
* | Issue #13916: Disallowed the surrogatepass error handler for non UTF-*Serhiy Storchaka2014-05-15
|/
* Close #20404: blacklist non-text encodings in io.TextIOWrapperNick Coghlan2014-02-04
* Issue #19619: Blacklist non-text codecs in method APINick Coghlan2013-11-22
* Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates.Serhiy Storchaka2013-11-19
* Close 19609: narrow scope of codec exc chainingNick Coghlan2013-11-15
* Close #17828: better handling of codec errorsNick Coghlan2013-11-13
* Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka2013-10-19
* Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-13
* Issue #18408: normalizestring() now raises MemoryError on memory allocation f...Victor Stinner2013-07-12
* Issue #15422: get rid of PyCFunction_New macroAndrew Svetlov2012-12-25
* #16336: merge with 3.3.Ezio Melotti2012-11-03
|\
| * #16336: merge with 3.2.Ezio Melotti2012-11-03
| |\
| | * #16336: fix input checking in the surrogatepass error handler. Patch by Serh...Ezio Melotti2012-11-03
* | | Issue #16330: Use surrogate-related macrosVictor Stinner2012-10-30
|/ /
* | merge with 3.2Philip Jenvey2012-10-26
|\|
| * bounds check for bad data (thanks amaury)Philip Jenvey2012-10-26
* | Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)Victor Stinner2012-04-27
* | Issue #13722: Avoid silencing ImportErrors when initializing the codecs regis...Antoine Pitrou2012-01-18
|\|
| * Issue #13722: Avoid silencing ImportErrors when initializing the codecs regis...Antoine Pitrou2012-01-18
* | PyCodec_IgnoreErrors() avoids the deprecated "u#" formatVictor Stinner2011-12-01
* | Avoid the Py_UNICODE type in codecs.cVictor Stinner2011-11-04
* | PyCodec_XMLCharRefReplaceError(): Remove unused variableVictor Stinner2011-11-04
* | Fix C89 incompatibility.Martin v. Löwis2011-11-04
* | Port error handlers from Py_UNICODE indexing to code point indexing.Martin v. Löwis2011-11-04
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-14
* | Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner2011-10-14