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
/
Doc
/
c-api
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec...
Miss Islington (bot)
2020-11-21
1
-2/+4
*
bpo-41192: Add documentation of undocumented audit events (GH-22831)
Miss Skeleton (bot)
2020-10-20
1
-0/+2
*
bpo-41802: Document 'PyDict_DelItem' can raise a 'KeyError' (GH-22291)
Miss Islington (bot)
2020-10-02
1
-4/+6
*
[3.9] bpo-38787: Clarify docs for PyType_GetModule and warn against common mi...
Miss Islington (bot)
2020-09-04
1
-1/+11
*
Note the buffer slots can be set with PyType_Spec with the unlimited API. (GH...
Miss Islington (bot)
2020-09-02
1
-1/+10
*
[3.9] bpo-40204: Allow pre-Sphinx 3 syntax in the doc (GH-21844) (GH-21901)
Victor Stinner
2020-08-19
18
-129/+116
*
bpo-41098: Doc: Add missing deprecated directives (GH-21162)
Miss Islington (bot)
2020-08-07
1
-0/+10
*
bpo-36346: Doc: Update removal schedule of legacy Unicode (GH-21479)
Miss Islington (bot)
2020-08-05
1
-9/+30
*
bpo-41211: Doc: Fix PyLong_FromUnicode (GH-21331)
Inada Naoki
2020-07-05
1
-3/+1
*
bpo-41211: Doc: Fix PyLong_FromUnicodeObject (GH-21325)
Miss Islington (bot)
2020-07-05
1
-3/+1
*
Doc: Minor fix to init config C API documentation (GH-21198)
Miss Islington (bot)
2020-07-01
1
-2/+2
*
bpo-41123: Remove PyUnicode_AsUnicodeCopy in 3.10 (GH-21227)
Inada Naoki
2020-06-30
1
-0/+2
*
bpo-41123: Doc: PyLong_FromUnicode will be removed in 3.10 (GH-21205)
Inada Naoki
2020-06-29
1
-1/+1
*
[3.9] bpo-40939: Deprecate the PyParser_SimpleParse* functions (GH-21012)
Lysandros Nikolaou
2020-06-21
1
-0/+10
*
bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-2...
Victor Stinner
2020-06-08
1
-0/+9
*
bpo-40910: Export Py_GetArgcArgv() function (GH-20721) (GH-20723)
Victor Stinner
2020-06-08
1
-0/+9
*
bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...
Miss Islington (bot)
2020-05-28
1
-1/+15
*
bpo-39245: Fix docs links to the stable ABI (GH-20388)
Miss Islington (bot)
2020-05-25
1
-9/+9
*
bpo-40584: Update PyType_FromModuleAndSpec() to process tp_vectorcall_offset ...
Hai Shi
2020-05-11
2
-3/+6
*
bpo-38787: Update structures.rst docs (PEP 573) (GH-19980)
Hai Shi
2020-05-07
1
-2/+2
*
bpo-38787: C API for module state access from extension methods (PEP 573) (GH...
Petr Viktorin
2020-05-07
2
-4/+82
*
bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)
Victor Stinner
2020-05-01
1
-0/+2
*
bpo-40428: Remove references to Py*_ClearFreeList in the docs (GH-19783)
Zackery Spytz
2020-04-29
7
-42/+0
*
bpo-40421: Add PyFrame_GetBack() function (GH-19765)
Victor Stinner
2020-04-29
1
-0/+11
*
bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)
Victor Stinner
2020-04-29
1
-3/+3
*
bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773)
Victor Stinner
2020-04-28
1
-3/+4
*
bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772)
Victor Stinner
2020-04-28
1
-0/+1
*
bpo-40421: Add PyFrame_GetCode() function (GH-19757)
Victor Stinner
2020-04-28
2
-2/+13
*
bpo-40421: Add pyframe.h header file (GH-19755)
Victor Stinner
2020-04-28
1
-0/+2
*
bpo-38387: Formally document PyDoc_STRVAR and PyDoc_STR macros (GH-16607)
Brad Solomon
2020-04-27
2
-1/+34
*
bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670)
Victor Stinner
2020-04-23
1
-0/+10
*
bpo-40302: Replace PY_INT64_T with int64_t (GH-19573)
Victor Stinner
2020-04-17
1
-1/+1
*
bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464)
Hai Shi
2020-04-14
1
-0/+9
*
bpo-40241: Add PyObject_GC_IsTracked and PyObject_GC_IsFinalized to the publi...
Pablo Galindo
2020-04-11
1
-0/+18
*
bpo-38644: Make tstate more explicit inside pystate.c (GH-19182)
Victor Stinner
2020-03-26
2
-0/+6
*
bpo-39947: Add PyThreadState_GetID() function (GH-19163)
Victor Stinner
2020-03-25
1
-0/+9
*
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
Dong-hee Na
2020-03-22
1
-1/+11
*
bpo-39947: Add PyThreadState_GetFrame() function (GH-19092)
Victor Stinner
2020-03-20
2
-4/+18
*
bpo-39984: Move pending calls to PyInterpreterState (GH-19066)
Victor Stinner
2020-03-19
1
-0/+10
*
bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738)
Victor Stinner
2020-03-17
1
-10/+34
*
bpo-39973: Fix the docs for PyObject_GenericSetDict() (GH-19026)
Zackery Spytz
2020-03-17
1
-1/+1
*
bpo-39947: Add PyThreadState_GetInterpreter() (GH-18981)
Victor Stinner
2020-03-13
1
-5/+14
*
bpo-39947: Add PyInterpreterState_Get() function (GH-18979)
Victor Stinner
2020-03-13
1
-0/+12
*
bpo-35370: Add _PyEval_SetTrace() function (GH-18975)
Victor Stinner
2020-03-13
1
-0/+5
*
bpo-38500: Add _PyInterpreterState_SetEvalFrameFunc() (GH-17340)
Victor Stinner
2020-03-12
1
-0/+26
*
Doc: Fix grammar in PyErr_ResourceWarning (GH-18879)
Daniel Hahler
2020-03-12
1
-1/+1
*
bpo-39877: Deprecate PyEval_InitThreads() (GH-18892)
Victor Stinner
2020-03-10
1
-5/+9
*
bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release ...
Serhiy Storchaka
2020-03-09
1
-1/+14
*
bpo-39882: Py_FatalError() logs the function name (GH-18819)
Victor Stinner
2020-03-06
1
-0/+7
*
bpo-39778: Add clarification about tp_traverse and ownership (GH-18754)
Pablo Galindo
2020-03-03
1
-1/+13
[next]