cpython/Objects
2026-06-24 14:46:39 +03:00
..
clinic gh-144774: Add critical section in BaseException.__setstate__ (#150578) 2026-05-30 21:07:27 +05:30
mimalloc gh-151065: Copy fix for memory leak from mimalloc upstream (GH-151066) 2026-06-11 18:11:52 -04:00
stringlib gh-146102: Fix type slot_bf_getbuffer() error handling (#151346) 2026-06-15 11:47:58 +02:00
abstract.c gh-141510 Add frozendict fast paths to abstract.c (#150692) 2026-06-19 08:41:00 +00:00
boolobject.c gh-111178: remove redundant casts for functions with correct signatures (#131673) 2025-04-01 17:18:11 +02:00
bytearrayobject.c gh-150285: Fix too long docstrings in builtins (GH-150293) 2026-05-24 15:03:32 +03:00
bytes_methods.c gh-150285: Fix too long docstrings in builtins (GH-150293) 2026-05-24 15:03:32 +03:00
bytesobject.c gh-150285: Fix too long docstrings in builtins (GH-150293) 2026-05-24 15:03:32 +03:00
call.c gh-145779: Improve classmethod/staticmethod scaling in free-threaded build (#145826) 2026-03-17 14:24:44 -04:00
capsule.c gh-111178: fix UBSan failures in Objects/capsule.c (GH-128239) 2025-01-08 14:55:04 +01:00
cellobject.c gh-127271: Replace use of PyCell_GET/SET (gh-127272) 2024-12-03 10:33:06 -08:00
classobject.c gh-145779: Improve classmethod/staticmethod scaling in free-threaded build (#145826) 2026-03-17 14:24:44 -04:00
codeobject.c gh-151763: Fix possible crash on CodeType deallocation (#152034) 2026-06-24 14:46:39 +03:00
complexobject.c gh-141004: soft-deprecate Py_INFINITY macro (#141033) 2025-11-12 13:44:49 +01:00
descrobject.c gh-150319: Replace all documentation which says "See PEP 585" (#150325) 2026-06-02 21:13:34 +01:00
dictnotes.txt bpo-46845: Reduce dict size when all keys are Unicode (GH-31564) 2022-03-02 08:09:28 +09:00
dictobject.c gh-151722: Defer GC tracking of frozendict to end of construction (gh-151740) 2026-06-22 23:45:55 +00:00
enumobject.c gh-150319: Replace all documentation which says "See PEP 585" (#150325) 2026-06-02 21:13:34 +01:00
exceptions.c gh-150988: Fix refleak in OSError when attrs are set before super().__init__() (#150990) 2026-06-10 12:27:11 +00:00
fileobject.c gh-130821: Add type information to error messages for invalid return type (GH-130835) 2025-08-14 11:04:41 +03:00
floatobject.c gh-150285: Fix too long docstrings in builtins (GH-150293) 2026-05-24 15:03:32 +03:00
frameobject.c gh-151905: fix memory error handling in PyFrame_GetBack (#151906) 2026-06-22 16:41:31 +05:30
funcobject.c gh-146261: JIT: protect against function version changes (#146300) 2026-04-13 02:23:47 +08:00
genericaliasobject.c gh-150285: Fix too long docstrings in GenericAlias and __class_getitem__ (GH-151354) 2026-06-11 19:52:58 +03:00
genobject.c gh-151436: Fix missing tstate->last_profiled_frame updates (#151437) 2026-06-17 16:49:23 -04:00
interpolationobject.c gh-150319: Replace all documentation which says "See PEP 585" (#150325) 2026-06-02 21:13:34 +01:00
iterobject.c gh-130821: Add type information to error messages for invalid return type (GH-130835) 2025-08-14 11:04:41 +03:00
lazyimportobject.c PEP 810 - Update some error strings (#150126) 2026-05-20 00:47:44 +00:00
listobject.c gh-150319: Replace all documentation which says "See PEP 585" (#150325) 2026-06-02 21:13:34 +01:00
listsort.txt gh-135551: Change how sorting picks minimum run length (#135553) 2025-06-26 23:48:05 -05:00
longobject.c gh-151218: Replace sys.flags in PyConfig_Set() (#151402) 2026-06-16 16:17:33 +00:00
memoryobject.c gh-150319: Replace all documentation which says "See PEP 585" (#150325) 2026-06-02 21:13:34 +01:00
methodobject.c gh-135607: remove null checking of weakref list in dealloc of extension modules and objects (#135614) 2025-06-30 11:14:31 +00:00
moduleobject.c gh-150052: Resolve un-loaded lazily loaded submodules via module.__getattr__ instead of publishing lazy values (#150055) (#150744) 2026-06-02 09:58:51 +01:00
namespaceobject.c gh-143636: fix a crash when calling `__replace__ on invalid SimpleNamespace` instances (#143655) 2026-03-14 09:58:15 +00:00
object.c gh-123619: Fix PyUnstable_Object_EnableDeferredRefcount() (#151260) 2026-06-11 12:55:13 +02:00
object_layout.md GH-115776: Allow any fixed sized object to have inline values (GH-123192) 2024-08-21 15:52:04 +01:00
object_layout_312.gv GH-115776: Embed the values array into the object, for "normal" Python objects. (GH-116115) 2024-04-02 11:59:21 +01:00
object_layout_312.png gh-71648: Optimize PNG files (GH-138842) 2025-09-12 20:13:05 +00:00
object_layout_313.gv GH-115776: Embed the values array into the object, for "normal" Python objects. (GH-116115) 2024-04-02 11:59:21 +01:00
object_layout_313.png gh-71648: Optimize PNG files (GH-138842) 2025-09-12 20:13:05 +00:00
object_layout_full_312.gv GH-96068: Document object layout (GH-96069) 2022-08-23 13:55:43 +01:00
object_layout_full_312.png gh-71648: Optimize PNG files (GH-138842) 2025-09-12 20:13:05 +00:00
object_layout_full_313.gv GH-115776: Embed the values array into the object, for "normal" Python objects. (GH-116115) 2024-04-02 11:59:21 +01:00
object_layout_full_313.png gh-71648: Optimize PNG files (GH-138842) 2025-09-12 20:13:05 +00:00
obmalloc.c gh-151297: Fix undefined behavior in _PyObject_MiRealloc (GH-151358) 2026-06-11 21:21:04 -04:00
odictobject.c gh-146102: Don't clear exception on success in odictobject.c (#151347) 2026-06-15 11:46:52 +02:00
picklebufobject.c gh-135607: remove null checking of weakref list in dealloc of extension modules and objects (#135614) 2025-06-30 11:14:31 +00:00
rangeobject.c gh-129068: Make range iterators thread-safe (gh-142886) 2025-12-18 13:11:51 -05:00
README
sentinelobject.c gh-148829: Make sentinels' repr and module customizable (#149654) 2026-05-19 09:18:56 -07:00
setobject.c gh-137759: Replace _PyObject_HashFast() with PyObject_Hash() in setobject.c (#137828) 2026-06-15 11:31:04 +02:00
sliceobject.c gh-150319: Replace all documentation which says "See PEP 585" (#150325) 2026-06-02 21:13:34 +01:00
structseq.c gh-148119: Refactor get_type_attr_as_size to improve error handling in structseq.c (#148120) 2026-04-06 17:41:30 +05:30
templateobject.c gh-150319: Replace all documentation which says "See PEP 585" (#150325) 2026-06-02 21:13:34 +01:00
tupleobject.c gh-150285: Fix too long docstrings in GenericAlias and __class_getitem__ (GH-151354) 2026-06-11 19:52:58 +03:00
typeobject.c gh-151126: Add missing PyErr_NoMemory() in type_from_slots_or_spec (#151582) 2026-06-23 15:48:11 +01:00
typevarobject.c gh-150285: Fix too long docstrings in GenericAlias and __class_getitem__ (GH-151354) 2026-06-11 19:52:58 +03:00
unicode_format.c gh-151845: Fix formatfloat() return-value contract in unicode_format.c (#151846) 2026-06-21 20:16:30 +03:00
unicode_formatter.c gh-139353: Rename formatter_unicode.c to unicode_formatter.c (#139723) 2025-10-08 14:56:00 +02:00
unicode_writer.c gh-146196: Fix Undefined Behavior in _PyUnicodeWriter_WriteASCIIString() (#146201) 2026-03-20 15:58:41 +00:00
unicodectype.c gh-129117: Add unicodedata.isxidstart() function (#140269) 2025-10-30 10:18:12 +00:00
unicodeobject.c gh-150285: Fix too long docstrings in builtins (GH-150293) 2026-05-24 15:03:32 +03:00
unicodetype_db.h closes gh-138706: update Unicode to 17.0.0 (#138719) 2025-09-11 09:58:39 -07:00
unionobject.c gh-150319: Replace all documentation which says "See PEP 585" (#150325) 2026-06-02 21:13:34 +01:00
weakrefobject.c gh-80384: Check that callback is callable at weak reference creation (GH-151145) 2026-06-10 13:34:55 +03:00

Source files for various builtin objects