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
/
Modules
/
cjkcodecs
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)
Petr Viktorin
2022-02-11
1
-1/+1
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-0/+1
*
bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351)
Erlend Egeberg Aasland
2021-06-17
1
-5/+9
*
bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)
Erlend Egeberg Aasland
2021-04-30
1
-1/+2
*
bpo-42866: Add traverse func to _multibytecodec.MultibyteCodec (GH-24166)
Victor Stinner
2021-01-08
1
-3/+13
*
bpo-42866: Fix refleak in CJK getcodec() (GH-24165)
Victor Stinner
2021-01-08
1
-0/+1
*
bpo-42846: Convert CJK codec extensions to multiphase init (GH-24157)
Victor Stinner
2021-01-07
1
-29/+39
*
bpo-1635741: Convert _multibytecodec to multi-phase init (GH-24095)
Erlend Egeberg Aasland
2021-01-04
2
-261/+218
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
1
-1/+1
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-2/+2
*
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka
2020-05-26
1
-11/+1
*
bpo-40328: Add tool for generating cjk mapping headers (GH-19602)
Dong-hee Na
2020-04-29
5
-3/+6
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...
Serhiy Storchaka
2020-04-12
1
-1/+1
*
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....
Serhiy Storchaka
2020-04-11
3
-4/+4
*
bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119)
Dong-hee Na
2020-03-24
1
-8/+4
*
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester
2020-03-04
1
-1/+1
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
2
-2/+2
*
bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)
Victor Stinner
2020-02-07
2
-2/+2
*
bpo-38631: Avoid Py_FatalError() in _multibytecodec init (GH-17233)
Victor Stinner
2019-11-18
1
-1/+0
*
bpo-37206: Unrepresentable default values no longer represented as None. (GH-...
Serhiy Storchaka
2019-09-14
1
-4/+4
*
bpo-37034: Display argument name on errors with keyword arguments with Argume...
RĂ©mi Lapeyre
2019-08-29
1
-7/+7
*
Fix typos in comments, docs and test names (#15018)
Min ho Kim
2019-07-30
1
-1/+1
*
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer
2019-07-11
1
-2/+2
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
2
-13/+3
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-10/+10
*
bpo-35194: cjkcodec: check the encoded value is not truncated (GH-10432)
Alexey Izbyshev
2019-03-29
1
-18/+20
*
bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1...
Serhiy Storchaka
2019-03-14
1
-13/+107
*
bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520)
Serhiy Storchaka
2019-01-11
1
-10/+19
*
bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G...
Serhiy Storchaka
2019-01-11
1
-3/+3
*
bpo-23867: Argument Clinic: inline parsing code for a single positional param...
Serhiy Storchaka
2018-12-25
1
-3/+7
*
bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...
Zackery Spytz
2018-12-17
1
-0/+4
*
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka
2018-11-27
1
-1/+1
*
bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. ...
Serhiy Storchaka
2018-11-27
1
-8/+8
*
cjkcodecs: Fix compiler warning (GH-10651)
Victor Stinner
2018-11-22
1
-2/+2
*
bpo-35194: Fix a wrong constant in cp932 codec (GH-10420)
Alexey Izbyshev
2018-11-09
1
-1/+1
*
bpo-33578: Fix getstate/setstate for CJK decoder (GH-10290)
Christopher Thorne
2018-11-02
1
-5/+22
*
bpo-33578: Add getstate/setstate for CJK codec (GH-6984)
Christopher Thorne
2018-11-01
4
-22/+273
*
bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...
Serhiy Storchaka
2017-12-15
1
-8/+8
*
bpo-31275: Small refactoring to silence a fall-through warning. (#3206)
Stefan Krah
2017-08-25
1
-8/+2
*
bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)
Serhiy Storchaka
2017-07-03
1
-20/+8
*
bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051)
Sylvain
2017-06-10
1
-13/+13
*
bpo-30003: Fix handling escape characters in HZ codec (#1556)
Xiang Zhang
2017-05-22
1
-13/+12
*
bpo-29990: Fix range checking in GB18030 decoder (#1495)
Xiang Zhang
2017-05-09
1
-1/+3
*
bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)
Serhiy Storchaka
2017-04-19
1
-0/+3
*
bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)
Serhiy Storchaka
2017-03-12
1
-4/+4
*
Run Argument Clinic: METH_VARARGS=>METH_FASTCALL
Victor Stinner
2017-01-17
1
-10/+22
*
Run Argument Clinic: METH_VARARGS=>METH_FASTCALL
Victor Stinner
2017-01-17
1
-1/+1
*
Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords
Victor Stinner
2017-01-17
1
-4/+4
*
Use _PyObject_CallMethodIdObjArgs()
Victor Stinner
2016-12-09
1
-2/+2
[next]