mirror of
https://github.com/python/cpython.git
synced 2026-01-27 13:15:25 +00:00
Use per-thread refcounting for the reference from function objects to their corresponding code object. This can be a source of contention when frequently creating nested functions. Deferred refcounting alone isn't a great fit here because these references are on the heap and may be modified by other libraries.
Source files for various builtin objects