cpython/Objects
2026-06-26 17:54:25 +00:00
..
clinic [3.15] gh-150285: Fix too long docstrings in builtins (GH-150293) (GH-150336) 2026-05-24 16:24:57 +03:00
mimalloc [3.15] gh-151065: Copy fix for memory leak from mimalloc upstream (GH-151066) (GH-151383) 2026-06-11 22:39:37 +00:00
stringlib [3.15] gh-151295: Fix use-after-free in bytes.join()/bytearray.join() via re-entrant __buffer__ (GH-151296) (GH-151304) 2026-06-11 11:30:24 +03:00
abstract.c [3.15] gh-141510 Add frozendict fast paths to abstract.c (GH-150692) (#151704) 2026-06-19 09:08:08 +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 [3.15] gh-150285: Fix too long docstrings in builtins (GH-150293) (GH-150336) 2026-05-24 16:24:57 +03:00
bytes_methods.c [3.15] gh-150285: Fix too long docstrings in builtins (GH-150293) (GH-150336) 2026-05-24 16:24:57 +03:00
bytesobject.c [3.15] gh-150285: Fix too long docstrings in builtins (GH-150293) (GH-150336) 2026-05-24 16:24:57 +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 [3.15] gh-151763: Fix possible crash on CodeType deallocation (GH-152034) (#152069) 2026-06-24 12:17:41 +00:00
complexobject.c gh-141004: soft-deprecate Py_INFINITY macro (#141033) 2025-11-12 13:44:49 +01:00
descrobject.c [3.15] gh-150319: Replace all documentation which says "See PEP 585" (GH-150325) (#150808) 2026-06-02 20:40:52 +00: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 [3.15] gh-151722: Defer GC tracking in frozendict.copy() (GH-152230) (#152271) 2026-06-26 12:26:17 +00:00
enumobject.c [3.15] gh-150319: Replace all documentation which says "See PEP 585" (GH-150325) (#150808) 2026-06-02 20:40:52 +00:00
exceptions.c [3.15] gh-150988: Fix refleak in OSError when attrs are set before super().__init__() (GH-150990) (#151240) 2026-06-10 12:56:54 +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 [3.15] gh-150285: Fix too long docstrings in builtins (GH-150293) (GH-150336) 2026-05-24 16:24:57 +03:00
frameobject.c [3.15] gh-151905: fix memory error handling in PyFrame_GetBack (GH-151906) (#151919) 2026-06-23 09:28:59 +03:00
funcobject.c gh-146261: JIT: protect against function version changes (#146300) 2026-04-13 02:23:47 +08:00
genericaliasobject.c [3.15] gh-150285: Fix too long docstrings in GenericAlias and __class_getitem__ (GH-151354) (GH-151367) 2026-06-11 17:22:52 +00:00
genobject.c [3.15] gh-151436: Fix missing tstate->last_profiled_frame updates (GH-151437) (#151612) 2026-06-19 10:24:53 +02:00
interpolationobject.c [3.15] gh-150319: Replace all documentation which says "See PEP 585" (GH-150325) (#150808) 2026-06-02 20:40:52 +00: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 [3.15] PEP 810 - Update some error strings (GH-150126) (#150135) 2026-05-20 15:17:28 +00:00
listobject.c [3.15] gh-150319: Replace all documentation which says "See PEP 585" (GH-150325) (#150808) 2026-06-02 20:40:52 +00:00
listsort.txt gh-135551: Change how sorting picks minimum run length (#135553) 2025-06-26 23:48:05 -05:00
longobject.c [3.15] gh-151218: Replace sys.flags in PyConfig_Set() (GH-151402) (#151552) 2026-06-16 16:48:56 +00:00
memoryobject.c [3.15] gh-150319: Replace all documentation which says "See PEP 585" (GH-150325) (#150808) 2026-06-02 20:40:52 +00: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 [3.15] gh-150052: Resolve un-loaded lazily loaded submodules via module.__getattr__ instead of publishing lazy values (#150055) 2026-05-19 21:23:30 +00: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 [3.15] gh-123619: Fix PyUnstable_Object_EnableDeferredRefcount() (GH-151260) (#151326) 2026-06-11 11:21:26 +00: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 [3.15] gh-151297: Fix undefined behavior in _PyObject_MiRealloc (GH-151358) (GH-151388) 2026-06-12 01:47:01 +00:00
odictobject.c [3.15] gh-150285: Fix too long docstrings in builtins (GH-150293) (GH-150336) 2026-05-24 16:24:57 +03: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 [3.15] gh-148829: Make sentinels' repr and module customizable (GH-149654) (#150092) 2026-05-22 07:44:34 -07:00
setobject.c [3.15] gh-152235: Defer GC tracking in set.union and set.difference (gh-152290) (gh-152316) 2026-06-26 17:54:25 +00:00
sliceobject.c [3.15] gh-150319: Replace all documentation which says "See PEP 585" (GH-150325) (#150808) 2026-06-02 20:40:52 +00: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 [3.15] gh-150319: Replace all documentation which says "See PEP 585" (GH-150325) (#150808) 2026-06-02 20:40:52 +00:00
tupleobject.c [3.15] gh-150285: Fix too long docstrings in GenericAlias and __class_getitem__ (GH-151354) (GH-151367) 2026-06-11 17:22:52 +00:00
typeobject.c [3.15] gh-151126: Add missing PyErr_NoMemory() in type_from_slots_or_spec (GH-151582) (#152016) 2026-06-23 15:15:00 +00:00
typevarobject.c [3.15] gh-150285: Fix too long docstrings in GenericAlias and __class_getitem__ (GH-151354) (GH-151367) 2026-06-11 17:22:52 +00:00
unicode_format.c [3.15] gh-151845: Fix formatfloat() return-value contract in unicode_format.c (GH-151846) (#151865) 2026-06-21 17:43:01 +00: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 [3.15] gh-150285: Fix too long docstrings in builtins (GH-150293) (GH-150336) 2026-05-24 16:24:57 +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 [3.15] gh-150319: Replace all documentation which says "See PEP 585" (GH-150325) (#150808) 2026-06-02 20:40:52 +00:00
weakrefobject.c [3.15] gh-150319: Replace all documentation which says "See PEP 585" (GH-150325) (#150808) 2026-06-02 20:40:52 +00:00

Source files for various builtin objects