summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/object.rst
Commit message (Expand)AuthorAgeFilesLines
* [3.13] Format None, True, False and NotImplemented as literals (GH-118758) (G...Miss Islington (bot)2024-05-081-1/+1
* gh-115754: Add Py_GetConstant() function (#116883)Victor Stinner2024-03-211-0/+49
* gh-113445: Amend PyObject_RichCompareBool() docs (GH-113891)Sergey B Kirpichev2024-01-271-6/+2
* gh-101100: Fix sphinx warnings in `c-api/file.rst` (#114546)Nikita Sobolev2024-01-261-0/+8
* gh-113391: fix outdated PyObject_HasAttr docs (#113420)Sergey B Kirpichev2024-01-081-3/+2
* gh-107073: Make PyObject_VisitManagedDict() public (#108763)Victor Stinner2023-10-021-0/+18
* gh-108511: Add C API functions which do not silently ignore errors (GH-109025)Serhiy Storchaka2023-09-171-3/+22
* Improve some C API documentation (GH-108768)Serhiy Storchaka2023-09-011-23/+17
* gh-98154: Clarify Usage of "Reference Count" In the Docs (gh-107552)Eric Snow2023-08-071-6/+7
* gh-107298: Fix yet more Sphinx warnings in the C API doc (GH-107345)Serhiy Storchaka2023-07-271-3/+3
* gh-106919: Use role :c:macro: for referencing the C "constants" (GH-106920)Serhiy Storchaka2023-07-211-8/+8
* gh-106521: Add PyObject_GetOptionalAttr() function (GH-106522)Serhiy Storchaka2023-07-111-2/+39
* gh-106033: [docs] Improve C API GetItem & HasAttr notes. (#106047)Gregory P. Smith2023-06-241-7/+11
* GH-97950: Use new-style index directive ('builtin') (#104164)Adam Turner2023-05-061-6/+6
* gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)Petr Viktorin2023-05-041-0/+39
* gh-102595: Document `PyObject_Format` c-api function (GH-102596)Nikita Sobolev2023-03-211-0/+9
* GH-101898: Fix missing term references for hashable definition (#101899)Furkan Onder2023-02-141-1/+1
* gh-93738: Documentation C syntax (:c:type:`PyTypeObject*` -> :c:expr:`PyTypeO...Adam Turner2022-10-051-1/+1
* GH-92678: Document that you shouldn't be doing your own dictionary offset cal...Mark Shannon2022-08-091-0/+18
* Document Py_ssize_t. (GH-92512)Julien Palard2022-05-131-1/+1
* More minor fixes to C API docs (GH-31525)Jelle Zijlstra2022-04-021-2/+2
* bpo-22039: [doc] clarify that there are no plans to disable deleting an attri...Irit Katriel2022-01-191-2/+3
* bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)Yury Selivanov2021-09-071-1/+1
* bpo-44426: Fix use of the C keyword 'default' as a variable name (GH-26798)Mark Dickinson2021-06-191-2/+2
* bpo-31861: Complete the C-API docs for PyObject_GetAiter and PyAiter_Check (G...Pablo Galindo2021-03-231-0/+11
* bpo-43181: Convert PyObject_TypeCheck to static inline function (GH-24533)Erlend Egeberg Aasland2021-02-151-2/+2
* bpo-40204, doc: Fix syntax of C variables (GH-21846)Victor Stinner2020-08-131-1/+1
* bpo-39973: Fix the docs for PyObject_GenericSetDict() (GH-19026)Zackery Spytz2020-03-171-1/+1
* bpo-39153: Clarify C API *SetItem refcounting semantics (GH-18220)Joannah Nanjekye2020-01-291-1/+2
* bpo-36974: expand call protocol documentation (GH-13844)Jeroen Demeyer2019-11-121-240/+0
* bpo-37645: add new function _PyObject_FunctionStr() (GH-14890)Jeroen Demeyer2019-11-051-0/+1
* bpo-38600: NULL -> ``NULL``. (GH-17001)Serhiy Storchaka2019-10-301-1/+1
* bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950)Serhiy Storchaka2019-10-301-36/+36
* bpo-37540: vectorcall: keyword names must be strings (GH-14682)Jeroen Demeyer2019-08-161-2/+2
* bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)Jeroen Demeyer2019-07-111-0/+12
* bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)Jeroen Demeyer2019-07-081-0/+11
* bpo-37483: add _PyObject_CallOneArg() function (#14558)Jeroen Demeyer2019-07-041-0/+11
* bpo-37337: Add _PyObject_VectorcallMethod() (GH-14228)Jeroen Demeyer2019-06-281-0/+22
* bpo-37194: Add PyObject_CallNoArgs() rationale (GH-14159)Victor Stinner2019-06-171-1/+2
* bpo-37194: Complete PyObject_CallXXX() docs (GH-14156)Victor Stinner2019-06-171-8/+16
* bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890)Victor Stinner2019-06-171-0/+10
* bpo-36974: document PEP 590 (GH-13450)Jeroen Demeyer2019-06-021-0/+77
* Doc: Replace the deprecated highlightlang directive by highlight. (#13377)Stéphane Wirtel2019-05-171-1/+1
* bpo-35461: Document C API functions which suppress exceptions. (GH-11119)Serhiy Storchaka2018-12-181-0/+9
* bpo-5945: Improve mappings and sequences C API docs. (GH-7029)Serhiy Storchaka2018-05-221-4/+4
* Uniformize argument names of "call" functionsVictor Stinner2016-12-061-27/+46
* Issue #25701: Document C API functions that both set and delete objectsMartin Panter2015-12-081-8/+19
* Fixed a typo.Serhiy Storchaka2015-05-021-1/+1
* Clean up the docs of PyObject_IsSubclass and PyObject_IsInstance, and mention...Georg Brandl2014-10-061-29/+34
* PyObject not PyType (closes #18494)Benjamin Peterson2014-10-061-2/+2