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-43774: Enhance debug build documentation (GH-25712)
Victor Stinner
2021-04-29
2
-48/+27
*
bpo-43774: Remove unused PYMALLOC_DEBUG macro (GH-25711)
Victor Stinner
2021-04-29
2
-46/+122
*
bpo-43908: Document Static Types in the C API (GH-25710)
Victor Stinner
2021-04-29
2
-43/+60
*
bpo-43908: Add Py_TPFLAGS_IMMUTABLETYPE flag (GH-25520)
Erlend Egeberg Aasland
2021-04-28
1
-0/+12
*
bpo-28254: Add a C-API for controlling the GC state (GH-25687)
scoder
2021-04-28
1
-0/+43
*
bpo-43959: clarify the documentation of the PyContextVar C-API (GH-25671)
scoder
2021-04-28
1
-7/+6
*
Fix typo in exceptions.rst (GH-25434)
Ikko Ashimine
2021-04-17
1
-1/+1
*
bpo-43862: Enhance -W cmdline option documentation (GH-25439)
Victor Stinner
2021-04-16
1
-0/+7
*
bpo-43774: Add more links to configure options (GH-25363)
Victor Stinner
2021-04-12
1
-4/+4
*
Fix Sphinx errors in the documentation and re-activate the suspicious check (...
Pablo Galindo
2021-04-12
1
-1/+1
*
bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)
Victor Stinner
2021-04-10
1
-0/+31
*
bpo-43774: Document configure options (GH-25283)
Victor Stinner
2021-04-08
3
-17/+24
*
Document PyCode_Addr2Line function. (GH-25111)
Mark Shannon
2021-04-02
1
-0/+8
*
bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)
Inada Naoki
2021-03-29
1
-0/+9
*
bpo-31861: Complete the C-API docs for PyObject_GetAiter and PyAiter_Check (G...
Pablo Galindo
2021-03-23
2
-0/+17
*
bpo-43422: Revert _decimal C API addition (GH-24960)
Antoine Pitrou
2021-03-21
2
-232/+0
*
bpo-43506: Doc: Update removal schedule for Py_UNICODE encoder APIs (GH-24885)
Inada Naoki
2021-03-16
1
-11/+15
*
bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755)
Antoine Pitrou
2021-03-11
1
-13/+57
*
bpo-3329: Fix typo in PyObjectArenaAllocator doc (GH-24795)
Victor Stinner
2021-03-09
1
-1/+1
*
bpo-36346: Document removal schedule of deprecate APIs (GH-20879)
Inada Naoki
2021-02-22
2
-8/+7
*
bpo-43277: Add PySet_CheckExact to the C-API (GH-24598)
Pablo Galindo
2021-02-20
1
-0/+6
*
closes bpo-43266: Improve array formatting. (GH-24573)
Erlend Egeberg Aasland
2021-02-19
1
-4/+4
*
closes bpo-43254: Fix *snprintf() man page refs. (GH-24563)
Erlend Egeberg Aasland
2021-02-19
1
-2/+2
*
bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566)
Victor Stinner
2021-02-18
1
-3/+5
*
bpo-40170: Always define PyIter_Check() as a function (GH-24548)
Erlend Egeberg Aasland
2021-02-16
1
-2/+2
*
bpo-40170: Convert PyDescr_IsData() to static inline function (GH-24535)
Erlend Egeberg Aasland
2021-02-16
1
-2/+2
*
bpo-43181: Convert PyObject_TypeCheck to static inline function (GH-24533)
Erlend Egeberg Aasland
2021-02-15
1
-2/+2
*
Fix Sphynx syntax in the memory.rst document
v3.10.0a5
Pablo Galindo
2021-02-02
1
-1/+1
*
Add a clarification for the object-domain allocators regarding pointer validi...
Pablo Galindo
2021-01-19
1
-0/+7
*
Add a paragraph about allocation domains to the C-API docs (GH-24252)
Pablo Galindo
2021-01-18
1
-1/+32
*
Docs: Remove stray semicolon in init.rst (GH-23974)
Ken Jin
2021-01-14
1
-1/+1
*
bpo-42528: Improve the docs of most Py*_Check{,Exact} API calls (GH-23602)
Antonio Cuni
2021-01-06
26
-52/+74
*
bpo-42451: Indicate that PyTuple_GetItem does not support negative indices (G...
Yasser A
2020-11-30
1
-1/+1
*
bpo-42423: Accept single base class in PyType_FromModuleAndSpec() (GH-23441)
Serhiy Storchaka
2020-11-22
1
-4/+4
*
bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec...
Serhiy Storchaka
2020-11-21
1
-2/+4
*
bpo-42085: Add documentation for Py_TPFLAGS_HAVE_AM_SEND (GH-23374)
Vladimir Matveev
2020-11-18
1
-0/+8
*
bpo-39573: Convert Py_TYPE() and Py_SIZE() back to macros (GH-23366)
Victor Stinner
2020-11-18
1
-6/+2
*
bpo-41832: Restore note about NULL in PyType_Slot.pfunc (GH-23243)
Hai Shi
2020-11-14
1
-0/+2
*
bpo-42294: Grammar fixes in doc glossary strong/weak refs (GH-23227)
kj
2020-11-10
1
-1/+1
*
bpo-41073: PyType_GetSlot() can now accept static types. (GH-21931)
Hai Shi
2020-11-10
1
-2/+4
*
bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220)
Victor Stinner
2020-11-10
2
-17/+57
*
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...
Vladimir Matveev
2020-11-10
1
-0/+16
*
bpo-42171: Add PEP573-related items to the limited API (GH-23009)
Petr Viktorin
2020-11-10
1
-2/+4
*
bpo-42294: Add borrowed/strong reference to doc glossary (GH-23206)
Victor Stinner
2020-11-09
8
-20/+39
*
bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123)
Hai Shi
2020-11-06
1
-2/+4
*
bpo-42260: PyConfig_Read() only parses argv once (GH-23168)
Victor Stinner
2020-11-05
1
-92/+104
*
bpo-42262: Add Py_NewRef() and Py_XNewRef() (GH-23152)
Victor Stinner
2020-11-05
1
-0/+31
*
bpo-42260: Add _PyInterpreterState_SetConfig() (GH-23158)
Victor Stinner
2020-11-04
1
-0/+2
*
bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122)
Victor Stinner
2020-11-04
1
-14/+90
*
bpo-42236: Enhance init and encoding documentation (GH-23109)
Victor Stinner
2020-11-02
6
-183/+521
[next]