summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
Commit message (Expand)AuthorAgeFilesLines
* Fix types in buffer/memoryview docs (GH-98118)Miss Islington (bot)2022-10-102-2/+2
* Add a warning message about PyOS_snprintf (GH-95993)Miss Islington (bot)2022-10-071-1/+2
* [3.11] gh-93738: Disallow pre-v3 syntax in the C domain (GH-97962) (#97976)Miss Islington (bot)2022-10-061-6/+6
* [3.11] gh-93738: Documentation C syntax (:c:type:<C type> -> :c:expr:<C type>...Ɓukasz Langa2022-10-0514-116/+116
* [3.11] gh-93738: Documentation C syntax (Function glob patterns -> literal ma...Miss Islington (bot)2022-10-055-14/+14
* [3.11] gh-93738: Documentation C syntax (:c:type:`PyTypeObject*` -> :c:expr:`...Miss Islington (bot)2022-10-052-2/+2
* [3.11] gh-93738: Documentation C syntax (Use `c:struct`) (GH-97772) (#97869)Miss Islington (bot)2022-10-052-5/+5
* [3.11] gh-93738: Documentation C syntax (:c:type: to :c:expr:, misc. cases) (...Miss Islington (bot)2022-10-052-4/+4
* [3.11] gh-93738: Documentation C syntax (:c:type:`PyObject` -> :c:expr:`PyObj...Miss Islington (bot)2022-10-059-28/+28
* [3.11] gh-93738: Documentation C syntax (:c:data:`view->obj` -> :c:expr:`view...Miss Islington (bot)2022-10-051-5/+5
* [3.11] gh-93738: Documentation C syntax (:c:type:`PyInterpreterState *` -> :c...Miss Islington (bot)2022-10-051-1/+1
* [3.11] gh-93738: Documentation C syntax (:c:type:`TYPE` -> :c:expr:`TYPE`) (G...Miss Islington (bot)2022-10-051-2/+2
* [3.11] gh-93738: Documentation C syntax (:c:type:`FILE` -> :c:expr:`FILE`) (G...Miss Islington (bot)2022-10-053-8/+8
* [3.11] gh-93738: Documentation C syntax (:c:type:`PyTupleObject*` -> :c:expr:...Miss Islington (bot)2022-10-041-1/+1
* [3.11] gh-93738: Documentation C syntax (:c:type:`PyBytesObject*` -> :c:expr:...Miss Islington (bot)2022-10-041-1/+1
* [3.11] gh-93738: Documentation C syntax (:c:type:`PyUnicodeObject*` -> :c:exp...Miss Islington (bot)2022-10-041-1/+1
* gh-93738: Documentation C syntax (:c:data:`0` -> ``0``) (GH-97771)Miss Islington (bot)2022-10-041-1/+1
* gh-95913: Fix and copyedit New Features section of 3.11 What's New (GH-95915)Miss Islington (bot)2022-09-191-2/+2
* Doc: Update Py_TPFLAGS_HAVE_FINALIZE in docs (GH-96273)Miss Islington (bot)2022-08-301-3/+6
* Clarify API stability of PyTypeObject in relation to static types. (GH-96217)Miss Islington (bot)2022-08-251-3/+3
* GH-92678: Document that you shouldn't be doing your own dictionary offset cal...Miss Islington (bot)2022-08-092-12/+23
* 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