summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/object.rst
Commit message (Expand)AuthorAgeFilesLines
* Python 3.15.0a3v3.15.0a3Hugo van Kemenade10 days1-1/+1
* gh-141070: Add PyUnstable_Object_Dump() function (#141072)Victor Stinner2025-11-181-0/+29
* Fix minor typos and wording in C API docs (#140955)Petr Viktorin2025-11-031-1/+1
* Python 3.15.0a1v3.15.0a1Hugo van Kemenade2025-10-141-2/+2
* gh-107073: fix relevant typo in `PyObject_ClearManagedDict` (#140032)Mikhail Efimov2025-10-131-1/+1
* gh-137341: Remove more word duplications (GH-137342)Serhiy Storchaka2025-08-031-2/+2
* Docs: Fix and improve the `PyUnstable_Object_EnableDeferredRefcount` document...Peter Bierma2025-07-131-5/+7
* gh-135075: Make PyObject_SetAttr() fail with NULL value and exception (#136180)Victor Stinner2025-07-031-0/+15
* gh-133140: Add `PyUnstable_Object_IsUniquelyReferenced` for free-threading (#...Peter Bierma2025-05-051-0/+18
* gh-133164: Add `PyUnstable_Object_IsUniqueReferencedTemporary` C API (gh-133170)Sam Gross2025-05-021-0/+32
* Python 3.14.0a5v3.14.0a5Hugo van Kemenade2025-02-111-1/+1
* gh-128844: Make `_Py_TryIncref` public as an unstable API. (#128926)Sam Gross2025-01-281-0/+81
* gh-128509: Add `PyUnstable_IsImmortal` for finding immortal objects (GH-129182)Peter Bierma2025-01-271-0/+11
* gh-127954: Document PyObject_DelItemString (#127986)RUANG (James Roy)2025-01-041-0/+7
* gh-125887: Update PyObject_HasAttr exception behavior (#125907)Damien2024-12-271-1/+2
* Document PyObject_SelfIter (#127861)Miro Hrončok2024-12-131-0/+6
* fix param type in PyObject_HasAttrWithError (docs) (#127403)biggus-developerus2024-11-291-1/+1
* Python 3.14.0a2v3.14.0a2Hugo van Kemenade2024-11-191-1/+1
* gh-123619: Add an unstable C API function for enabling deferred reference cou...Peter Bierma2024-11-131-0/+24
* gh-101100: Add a table of class attributes to the "Custom classes" section of...Alex Waygood2024-09-251-6/+6
* gh-113993: Don't immortalize in PyUnicode_InternInPlace; keep immortalizing i...Petr Viktorin2024-07-161-0/+15
* [docs] fix a Sphinx directive in `c-api/object.rst` (#121430)Bénédikt Tran2024-07-061-0/+1
* Format None, True, False and NotImplemented as literals (GH-118758)Serhiy Storchaka2024-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