index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
codecs.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-37751: Fix codecs.lookup() normalization (GH-15092)
Jordon Xu
2019-08-21
1
-16/+16
*
bpo-29548: no longer use PyEval_Call* functions (GH-14683)
Jeroen Demeyer
2019-07-11
1
-2/+2
*
bpo-37483: fix reference leak in _PyCodec_Lookup (GH-14600)
Jeroen Demeyer
2019-07-05
1
-13/+14
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-12/+3
*
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka
2019-02-25
1
-5/+11
*
bpo-35454: Fix miscellaneous minor issues in error handling. (#11077)
Serhiy Storchaka
2018-12-11
1
-2/+4
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
Victor Stinner
2018-08-03
1
-8/+6
*
bpo-33231: Fix potential leak in normalizestring() (GH-6386)
INADA Naoki
2018-04-06
1
-2/+0
*
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...
Serhiy Storchaka
2018-01-25
1
-9/+5
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+1
*
Issue #28858: Remove _PyObject_CallArg1() macro
Victor Stinner
2016-12-05
1
-1/+1
*
Replace PyObject_CallFunction() with fastcall
Victor Stinner
2016-12-01
1
-2/+2
*
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka
2016-11-20
1
-1/+1
*
Issue #28510: Clean up decoding error handlers.
Serhiy Storchaka
2016-10-23
1
-15/+6
*
Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc
Martin Panter
2016-04-15
1
-2/+2
*
Issue #24993: Handle import error in namereplace error handler
Victor Stinner
2015-09-03
1
-7/+5
*
Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),
Serhiy Storchaka
2015-05-30
1
-5/+6
|
\
|
*
Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),
Serhiy Storchaka
2015-05-30
1
-5/+6
*
|
Issue #24102: Fixed exception type checking in standard error handlers.
Serhiy Storchaka
2015-05-18
1
-27/+21
|
\
\
|
|
/
|
*
Issue #24102: Fixed exception type checking in standard error handlers.
Serhiy Storchaka
2015-05-18
1
-24/+18
*
|
Issue #23450: Fixed possible integer overflows.
Serhiy Storchaka
2015-02-16
1
-1/+1
*
|
Issue #22286: The "backslashreplace" error handlers now works with
Serhiy Storchaka
2015-01-25
1
-53/+91
*
|
correct assertion
Benjamin Peterson
2014-11-26
1
-1/+1
*
|
fix variable name
Benjamin Peterson
2014-11-26
1
-1/+1
*
|
Issue #19676: Fixed integer overflow issue in "namereplace" error handler.
Serhiy Storchaka
2014-11-26
1
-5/+11
*
|
Issue #19676: Added the "namereplace" error handler.
Serhiy Storchaka
2014-11-25
1
-0/+108
*
|
Issue #22518: Fixed integer overflow issues in "backslashreplace",
Serhiy Storchaka
2014-10-04
1
-2/+8
|
\
\
|
|
/
|
*
Issue #22518: Fixed integer overflow issues in "backslashreplace",
Serhiy Storchaka
2014-10-04
1
-2/+8
*
|
Fixed reference leak in the "backslashreplace" error handler.
Serhiy Storchaka
2014-09-23
1
-1/+3
|
\
\
|
|
/
|
*
Fixed reference leak in the "backslashreplace" error handler.
Serhiy Storchaka
2014-09-23
1
-1/+3
*
|
Merge fix for issue #22166 from 3.4
Nick Coghlan
2014-09-15
1
-0/+26
|
\
\
|
|
/
|
*
Issue #22166: clear codec caches in test_codecs
Nick Coghlan
2014-09-15
1
-0/+26
*
|
Issue #13916: Fix surrogatepass error handler on Windows
Victor Stinner
2014-05-16
1
-0/+4
*
|
Issue #13916: Disallowed the surrogatepass error handler for non UTF-*
Serhiy Storchaka
2014-05-15
1
-4/+19
|
/
*
Close #20404: blacklist non-text encodings in io.TextIOWrapper
Nick Coghlan
2014-02-04
1
-21/+63
*
Issue #19619: Blacklist non-text codecs in method API
Nick Coghlan
2013-11-22
1
-16/+122
*
Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates.
Serhiy Storchaka
2013-11-19
1
-17/+146
*
Close 19609: narrow scope of codec exc chaining
Nick Coghlan
2013-11-15
1
-4/+6
*
Close #17828: better handling of codec errors
Nick Coghlan
2013-11-13
1
-0/+18
*
Issue #1772673: The type of `char*` arguments now changed to `const char*`.
Serhiy Storchaka
2013-10-19
1
-2/+2
*
Issue #18722: Remove uses of the "register" keyword in C code.
Antoine Pitrou
2013-08-13
1
-2/+2
*
Issue #18408: normalizestring() now raises MemoryError on memory allocation f...
Victor Stinner
2013-07-11
1
-1/+1
*
Issue #15422: get rid of PyCFunction_New macro
Andrew Svetlov
2012-12-25
1
-1/+1
*
#16336: merge with 3.3.
Ezio Melotti
2012-11-03
1
-4/+4
|
\
|
*
#16336: merge with 3.2.
Ezio Melotti
2012-11-03
1
-4/+4
|
|
\
|
|
*
#16336: fix input checking in the surrogatepass error handler. Patch by Serh...
Ezio Melotti
2012-11-03
1
-4/+4
*
|
|
Issue #16330: Use surrogate-related macros
Victor Stinner
2012-10-30
1
-2/+2
|
/
/
*
|
merge with 3.2
Philip Jenvey
2012-10-27
1
-3/+4
|
\
\
|
|
/
[next]