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
...
*
gh-107091: Fix the use of some C domain roles (#107092)
Serhiy Storchaka
2023-07-23
5
-8/+8
*
gh-101100: Fix some broken sphinx references (#107095)
wulmer
2023-07-23
4
-6/+6
*
gh-106948: Add standard external names to nitpick_ignore (GH-106949)
Serhiy Storchaka
2023-07-22
4
-14/+14
*
gh-106004: Add PyDict_GetItemRef() function (#106005)
Victor Stinner
2023-07-21
1
-2/+26
*
gh-106909: Use role :const: for referencing module constants (GH-106910)
Serhiy Storchaka
2023-07-21
1
-1/+1
*
gh-106892: Use roles :data: and :const: for referencing module variables (GH-...
Serhiy Storchaka
2023-07-21
1
-3/+3
*
gh-106919: Use role :c:macro: for referencing the C "constants" (GH-106920)
Serhiy Storchaka
2023-07-21
20
-210/+228
*
bpo-42327: C API: Add PyModule_Add() function (GH-23443)
Serhiy Storchaka
2023-07-18
1
-34/+31
*
gh-106307: C API: Add PyMapping_GetOptionalItem() function (GH-106308)
Serhiy Storchaka
2023-07-11
1
-0/+30
*
gh-106521: Add PyObject_GetOptionalAttr() function (GH-106522)
Serhiy Storchaka
2023-07-11
1
-2/+39
*
gh-105227: Add PyType_GetDict() (GH-105747)
Eric Snow
2023-07-10
2
-1/+30
*
gh-105927: PyWeakref_GetRef() returns 1 on success (#106561)
Victor Stinner
2023-07-09
1
-2/+4
*
gh-105373: Remove C API global config vars in Python 3.14 (#106538)
Victor Stinner
2023-07-07
1
-16/+16
*
tp_flags docs: fix indentation (#106420)
Jelle Zijlstra
2023-07-05
1
-9/+9
*
gh-101100: Docs: Fix references to several numeric dunders (#106278)
F3eQnxN3RriK
2023-06-30
3
-26/+26
*
gh-106023: Remove _PyObject_FastCallTstate() function (#106273)
Victor Stinner
2023-06-30
1
-13/+0
*
gh-106168: PyTuple_SET_ITEM() now checks the index (#106164)
Victor Stinner
2023-06-28
2
-7/+20
*
gh-105927: Deprecate PyWeakref_GetObject() function (#106006)
Victor Stinner
2023-06-26
1
-0/+6
*
gh-106033: [docs] Improve C API GetItem & HasAttr notes. (#106047)
Gregory P. Smith
2023-06-24
2
-14/+23
*
gh-84436: update docs on Py_None/Py_True/Py_False/Py_Ellipsis becoming immort...
Irit Katriel
2023-06-21
3
-19/+25
*
gh-105927: Add PyWeakref_GetRef() function (#105932)
Victor Stinner
2023-06-21
1
-8/+19
*
gh-105922: Add PyImport_AddModuleRef() function (#105923)
Victor Stinner
2023-06-20
1
-12/+25
*
gh-105196: Fix indentations of section headings in C API docs (#105672)
TATHAGATA ROY
2023-06-14
3
-6/+6
*
gh-105373: Remove PyArg_Parse() deprecation (#105394)
Victor Stinner
2023-06-13
1
-8/+16
*
gh-103968: PyType_FromMetaclass: Allow metaclasses with tp_new=NULL (GH-105386)
Petr Viktorin
2023-06-12
1
-1/+1
*
gh-105396: Deprecate PyImport_ImportModuleNoBlock() function (#105397)
Victor Stinner
2023-06-09
1
-0/+3
*
gh-105156: Update Unicode C API: remove deprecation (#105379)
Victor Stinner
2023-06-06
1
-9/+0
*
gh-102304: Fix up Simple ABI doc (GH-105351)
Victor Stinner
2023-06-06
1
-4/+4
*
gh-102304: doc: Add links to Stable ABI and Limited C API (#105345)
Victor Stinner
2023-06-06
6
-28/+41
*
gh-102778: update documentation of PyErr_PrintEx and traceback.print_last() r...
Irit Katriel
2023-06-02
1
-3/+8
*
gh-105184: document that marshal functions can fail and need to be checked wi...
Irit Katriel
2023-06-02
1
-0/+4
*
gh-85275: Remove old buffer APIs (#105137)
Inada Naoki
2023-06-02
2
-56/+0
*
gh-105145: Deprecate Py_GetPath() function (#105179)
Victor Stinner
2023-06-01
2
-0/+22
*
gh-105182: Remove PyEval_AcquireLock() and PyEval_InitThreads() (#105183)
Victor Stinner
2023-06-01
1
-74/+1
*
gh-105145: Remove old functions to config Python init (#105154)
Victor Stinner
2023-06-01
4
-291/+41
*
gh-105156: Deprecate the old Py_UNICODE type in C API (#105157)
Victor Stinner
2023-06-01
1
-0/+2
*
gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051)
Inada Naoki
2023-05-31
1
-9/+9
*
gh-105071: add missing versionadded directive (#105097)
Irit Katriel
2023-05-30
1
-0/+2
*
gh-105071: add PyUnstable_Exc_PrepReraiseStar to expose except* implementatio...
Irit Katriel
2023-05-30
1
-0/+10
*
gh-97908: CAPI docs: Remove repeated struct names from member docs (GH-100054)
Petr Viktorin
2023-05-29
2
-8/+23
*
GH-104668: Don't call PyOS_* hooks in subinterpreters (GH-104674)
Brandt Bucher
2023-05-22
1
-0/+8
*
gh-98836: Extend PyUnicode_FromFormat() (GH-98838)
Serhiy Storchaka
2023-05-21
1
-85/+143
*
GH-101291: Add low level, unstable API for pylong (GH-101685)
Mark Shannon
2023-05-21
1
-0/+24
*
gh-103295: expose API for writing perf map files (#103546)
gsallam
2023-05-21
2
-0/+51
*
GH-96803: Document and test new unstable internal frame API functions (GH-104...
Mark Shannon
2023-05-18
1
-0/+35
*
GH-97950: Use new-style index directive ('builtin') (#104164)
Adam Turner
2023-05-06
10
-25/+25
*
GH-97950: Use new-style index directive ('object') (#104158)
Adam Turner
2023-05-04
19
-24/+24
*
GH-97950: Use new-style index directive ('module') (#103996)
Adam Turner
2023-05-04
3
-13/+13
*
gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)
Petr Viktorin
2023-05-04
4
-8/+115
*
gh-103968: Deprecate creating heap types whose metaclass has custom tp_new. (...
Petr Viktorin
2023-05-03
1
-2/+24
[prev]
[next]