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
*
gh-106320: Re-add some PyLong/PyDict C-API functions (GH-#111162)
scoder
2023-10-25
1
-1/+0
*
gh-67565: Remove redundant C-contiguity checks (GH-105521)
Furkan Onder
2023-10-23
1
-9/+1
*
gh-110964: Remove private _PyArg functions (#110966)
Victor Stinner
2023-10-17
1
-1/+2
*
gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)
Victor Stinner
2023-08-31
1
-4/+3
*
gh-106320: Remove private PyLong C API functions (#108429)
Victor Stinner
2023-08-24
1
-0/+1
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-5/+7
*
gh-86493: Modernize modules initialization code (GH-106858)
Serhiy Storchaka
2023-07-25
1
-5/+1
*
gh-106320: Remove private _PyImport C API functions (#106383)
Victor Stinner
2023-07-03
1
-0/+1
*
gh-106320: Move _PyUnicodeWriter to the internal C API (#106342)
Victor Stinner
2023-07-03
3
-0/+10
*
gh-104922: remove PY_SSIZE_T_CLEAN (#106315)
Inada Naoki
2023-07-02
2
-2/+0
*
gh-106084: Remove old PyObject call aliases (#106085)
Victor Stinner
2023-06-26
1
-2/+2
*
gh-92536: Remove PyUnicode_READY() calls (#105210)
Victor Stinner
2023-06-01
1
-8/+0
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
2
-0/+2
*
gh-103583: Isolate CJK codec modules (#103869)
Erlend E. Aasland
2023-04-27
7
-205/+226
*
gh-103583: Add ref. dependency between multibytecodec modules (#103589)
Erlend E. Aasland
2023-04-19
3
-14/+58
*
gh-103583: Always pass multibyte codec structs as const (#103588)
Erlend E. Aasland
2023-04-19
2
-7/+7
*
gh-103583: Add codecs and maps to _codecs_* module state (#103540)
Erlend E. Aasland
2023-04-17
8
-94/+161
*
gh-101863: Fix wrong comments in EUC-KR codec (gh-102417)
Byeongmin Choi
2023-03-04
1
-2/+2
*
bpo-15999: Accept arbitrary values for boolean parameters. (#15609)
Serhiy Storchaka
2022-12-03
2
-9/+9
*
gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)
Victor Stinner
2022-11-23
1
-2/+1
*
gh-99537: Use Py_SETREF() function in C code (#99656)
Victor Stinner
2022-11-22
1
-4/+2
*
gh-99300: Use Py_NewRef() in Modules/ directory (#99469)
Victor Stinner
2022-11-14
1
-14/+7
*
gh-90928: Improve static initialization of keywords tuple in AC (#95907)
Erlend E. Aasland
2022-08-13
1
-123/+39
*
gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (...
Eric Snow
2022-08-11
1
-7/+211
*
gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)
Serhiy Storchaka
2022-06-14
1
-8/+1
*
gh-84508: tool to generate cjk traditional chinese mappings (gh-93272)
Davide Rizzo
2022-06-11
2
-0/+3
*
gh-91320: Argument Clinic uses _PyCFunction_CAST() (#32210)
Victor Stinner
2022-05-03
1
-11/+11
*
gh-91583: AC: Fix regression for functions with defining_class (GH-91739)
Serhiy Storchaka
2022-04-30
1
-18/+15
*
bpo-46541: Remove usage of _Py_IDENTIFIER from multibytecodec (GH-31475)
Dong-hee Na
2022-03-01
2
-25/+103
*
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
[next]