Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Include/internal/pycore_obmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ typedef unsigned int pymem_uint; /* assuming >= 16 bits */
#undef uint
#define uint pymem_uint

/* NOTE: the following overviews were in the initial checkin, in 1998. In
* 2026, they're still helpful, but some details have changed. For example,
* we now use 32 size clesses 16 bytes apart, and an arena is generally at
* last 1MB. Use sys._debugmallocstats() to see exact current details for
* the specific version of CPython is use.
*/

/* An object allocator for Python.

Expand Down
Loading