summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
Commit message (Expand)AuthorAgeFilesLines
* gh-94936: C getters: co_varnames, co_cellvars, co_freevars (GH-95008)Miss Islington (bot)2022-08-041-0/+25
* [3.11] gh-90359: Unify documentation style for datetime.rst (gh-94836) (gh-94...Dong-hee Na2022-07-141-0/+7
* gh-90359: Update documentation to follow PEP 495. (gh-94800)Miss Islington (bot)2022-07-141-0/+12
* Docs: remove redundant "adverb-adjective" hyphens from compound modifiers (GH...Miss Islington (bot)2022-07-055-6/+6
* [3.11] [doc] fix typo in reference to tp_descr_get and tp_descr_set (GH-94140...Irit Katriel2022-06-261-2/+2
* gh-87961: Remove outdated notes from functions that aren't in the Limited API...Miss Islington (bot)2022-06-103-26/+0
* Doc: Update references and examples of old, unsupported OSes and uarches (GH-...Miss Islington (bot)2022-06-091-3/+2
* gh-92913: Fix typos in documentation (GH-93129)Miss Islington (bot)2022-05-231-3/+3
* gh-92913: Clarify changes to PyInitConfig.module_search_paths[_set] fields (G...Miss Islington (bot)2022-05-191-4/+16
* gh-91755: Document Py_IncRef and Py_DecRef as C functions (GH-91805)Miss Islington (bot)2022-05-181-4/+10
* Document Py_ssize_t. (GH-92512)Miss Islington (bot)2022-05-138-22/+29
* gh-89653: PEP 670: unicodeobject.h uses _Py_CAST() (GH-92696) (GH-92703)Miss Islington (bot)2022-05-121-3/+3
* Enhance PyConfig documentation (GH-92394)Miss Islington (bot)2022-05-091-37/+46
* [3.11] GH-92431: Fix footnotes in Doc/c-api/exceptions.rst (GH-92432) (GH-92...Miss Islington (bot)2022-05-081-11/+11
* Document the lifetime of `PyUnicode_AsUTF8String` (#92325)Matt Wozniski2022-05-061-1/+2
* gh-88279: Deprecate PySys_SetArgvEx() (#92363)Victor Stinner2022-05-063-5/+23
* gh-57684: Add -P cmdline option and PYTHONSAFEPATH env var (#31542)Victor Stinner2022-05-051-9/+37
* gh-92047: Py_GetVersion multi-digit minor version (GH-92047) (#92048)Robert Howlett2022-05-051-1/+1
* gh-89653: PEP 670: Convert PyBytes macros to functions (#91990)Victor Stinner2022-05-032-4/+4
* gh-92154: Expose PyCode_GetCode in the C API (GH-92168)Ken Jin2022-05-031-0/+14
* gh-88097: doc: fix link to Py_Version (#92141)Victor Stinner2022-05-021-1/+1
* gh-89653: PEP 670: Amend docs (GH-91813)Erlend Egeberg Aasland2022-04-224-17/+18
* Docs: Clarify availability of PyOS_CheckStack (GH-91816)Petr Viktorin2022-04-221-3/+3
* gh-91768: C API no longer use "const PyObject*" type (#91769)Victor Stinner2022-04-211-7/+12
* GH-88116: Document that PyCodeNew is dangerous, and make PyCode_NewEmpty less...Mark Shannon2022-04-211-6/+15
* GH-88756: Update docs for PEP 523 eval function type. (GH-91788)Mark Shannon2022-04-211-1/+4
* bpo-40421: Cleanup PyFrame C API (GH-32417)Victor Stinner2022-04-191-16/+2
* gh-91118: Fix docstrings that do not honor --without-doc-strings (#31769)Oleg Iarygin2022-04-181-4/+4
* gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531)Irit Katriel2022-04-151-4/+40
* Add new PyFrame_GetLasti C-API function (GH-32413)Mark Shannon2022-04-081-0/+11
* c-api docs: There are five fields, not four (GH-32379)Jelle Zijlstra2022-04-071-1/+1
* bpo-47115: Document which parts of structs are in limited API/stable ABI (GH-...Petr Viktorin2022-04-061-2/+4
* Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-3205...Victor Stinner2022-04-061-10/+1
* More minor fixes to C API docs (GH-31714)Jelle Zijlstra2022-04-025-11/+9
* More minor fixes to C API docs (GH-31525)Jelle Zijlstra2022-04-0213-29/+30
* bpo-46850: Move _PyInterpreterState_SetEvalFrameFunc() to internal C API (GH-...Victor Stinner2022-04-011-1/+10
* bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)Mark Shannon2022-03-311-0/+35
* bpo-47164: Add _PyCFunction_CAST() macro (GH-32192)Victor Stinner2022-03-311-0/+3
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-301-1/+1
* bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH...Mark Shannon2022-03-251-0/+11
* bpo-46836: Add Doc/c-api/frame.rst (GH-32051)Victor Stinner2022-03-234-43/+49
* bpo-46906: Mention native endian in PyFloat_Pack8() doc (GH-31866)Victor Stinner2022-03-141-2/+6
* bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)Victor Stinner2022-03-111-0/+82
* Add missing "to" to two tp_flags notes (GH-31624)Brandt Bucher2022-03-011-2/+2
* bpo-46836: Move PyFrameObject to pycore_frame.h (GH-31530)Victor Stinner2022-02-251-2/+10
* bpo-40421: Fix PyFrame_GetCode() documentation (GH-31535)Victor Stinner2022-02-231-2/+2
* Minor fixes to C API docs (GH-31501)Jelle Zijlstra2022-02-234-24/+28
* bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)Petr Viktorin2022-02-111-0/+17
* bpo-46608: exclude marshalled-frozen data if deep-freezing to save 300 KB spa...Kumar Aditya2022-02-041-0/+4
* bpo-45459: Add Py_buffer to limited API (GH-29991)Christian Heimes2022-02-022-6/+12