vault
Search
Search
Dark mode
Light mode
Explorer
Tag: cpython
59 items with this tag.
Jun 01, 2026
Adaptive Specialization Families
python
python/internals
cpython
interpreter
bytecode
performance
faster-cpython
python/3.14
Jun 01, 2026
Bound and Unbound Methods
python
cpython
methods
descriptors
bound-method
attribute-access
python-internals
Jun 01, 2026
CPython Dict Internals
python
python/internals
data-structures
hash-table
cpython
Jun 01, 2026
CPython Float Internals
python
cpython
internals
built-in-types
float
numerics
ieee754
Jun 01, 2026
CPython List Internals
python
cpython
internals
data-structures
list
memory
Jun 01, 2026
CPython Memory Management Overview
python
python/internals
python/memory
cpython
memory-management
garbage-collection
Jun 01, 2026
CPython Set Internals
python
python/internals
data-structures
hash-table
cpython
set
frozenset
Jun 01, 2026
CPython Tuple Internals
python
cpython
internals
data-structures
tuple
memory
immutability
Jun 01, 2026
Capsules and Opaque Pointers
python
cpython
c-api
capsules
opaque-pointers
extension-modules
pycapsule
uncertain
Jun 01, 2026
Circular Import Mechanics
python
cpython
import-system
circular-imports
sys-modules
debugging
Jun 01, 2026
Deferred Annotations
python
cpython
typing
annotations
data-model
uncertain
Jun 01, 2026
Dictionary Ordering Assumptions
python
python/gotcha
data-structures
dict
ordering
cpython
Jun 01, 2026
Dunder Methods and the Data Model
python
python/internals
python/data-model
cpython
object-model
type-system
Jun 01, 2026
Exception Handling Internals
python
cpython
exceptions
control-flow
bytecode
internals
Jun 01, 2026
Free Lists
python
cpython
internals
memory
allocator
free-list
free-threading
Jun 01, 2026
Frozen and Built-in Modules
python
cpython
import-system
frozen-modules
builtin-modules
interpreter-startup
uncertain
Jun 01, 2026
Function Objects and Code Objects
python
cpython
functions
function-object
runtime
internals
python-internals
Jun 01, 2026
Generational Garbage Collection
python
cpython
garbage-collection
memory-management
generational-gc
Jun 01, 2026
Integer and String Identity Surprises
python
python/internals
python/gotcha
identity
interning
cpython
Jun 01, 2026
Object Identity and Interning
python
python/internals
python/object-model
cpython
identity
interning
Jun 01, 2026
Per-Interpreter GIL
python
cpython
gil
concurrency
parallelism
subinterpreters
per-interpreter-state
interpreter-isolation
Jun 01, 2026
Profile-Guided Optimization of CPython
python
python/internals
cpython
build
performance
compiler
uncertain
Jun 01, 2026
Profiling with cProfile
python
python/internals
cpython
profiling
performance
observability
faster-cpython
Jun 01, 2026
Python 3.14 Release Internals
python
python/internals
python/release
cpython
free-threading
jit
garbage-collection
uncertain
Jun 01, 2026
Python Tokenizer
python-internals
cpython
compiler
tokenizer
lexer
pep-701
pep-263
Jun 01, 2026
Reference Counting Mechanics
python
python/internals
python/memory
cpython
reference-counting
memory-management
Jun 01, 2026
Reference Counting
python
python/internals
python/object-model
python/memory
cpython
garbage-collection
Jun 01, 2026
Reference Cycles and How They Form
python
python/internals
python/memory
garbage-collection
cpython
gotcha
Jun 01, 2026
Remote Debugging in CPython
python
cpython
debugging
observability
remote-debugging
pep-768
eval-breaker
Jun 01, 2026
Sampling Profilers and py-spy
python
python/internals
cpython
profiling
performance
observability
py-spy
sampling
Jun 01, 2026
The Buffer Protocol
python
cpython
c-api
buffer-protocol
memoryview
numpy
zero-copy
pep-3118
pep-688
Jun 01, 2026
The CPython C API
python
python/internals
python/c-api
cpython
extensions
ffi
Jun 01, 2026
The CPython Source Tree Layout
python
python/internals
cpython
source-tree
build-system
Jun 01, 2026
The Cyclic Garbage Collector
python
python/internals
python/memory
garbage-collection
cpython
Jun 01, 2026
The Memory Allocator Domains
python
cpython
internals
memory
allocator
c-api
Jun 01, 2026
The faulthandler Module
python
cpython
internals
debugging
observability
crash-diagnostics
signals
Jun 01, 2026
The pdb Debugger
python
cpython
debugging
observability
pdb
bdb
tracing
Jun 01, 2026
The slots Optimization
python
cpython
object-model
descriptors
memory
attributes
slots
uncertain
Jun 01, 2026
Tier 2 IR and the Micro-Op Optimizer
python
python/internals
python/interpreter
python/jit
cpython
performance
python/3.14
Jun 01, 2026
Truthiness and Falsy Values
python
python/internals
python/gotcha
truthiness
control-flow
cpython
uncertain
Jun 01, 2026
collections Data Structure Internals
python
cpython
stdlib
collections
data-structures
deque
ordereddict
namedtuple
Jun 01, 2026
sys.monitoring
python
cpython
debugging
profiling
observability
instrumentation
pep-669
Jun 01, 2026
sys.settrace and Tracing Hooks
python
cpython
debugging
profiling
tracing
observability
Jun 01, 2026
tracemalloc and Memory Profiling
python
cpython
memory-management
profiling
debugging
tracemalloc
pep
May 31, 2026
Finders and Loaders
python
cpython
import-system
importlib
finder
loader
module-spec
May 31, 2026
GIL Mechanics and the Switch Interval
python
python/internals
cpython
gil
concurrency
threading
scheduling
May 31, 2026
Generator and Coroutine Frame Internals
python-internals
cpython
generators
coroutines
frames
concurrency
memory
May 31, 2026
Generators and the yield Mechanism
python-internals
cpython
generators
iterators
concurrency
bytecode
May 31, 2026
Python Threading Model
python
python/internals
cpython
concurrency
threading
gil
May 31, 2026
The type and object Relationship
python
python/internals
cpython
type-system
object-model
metaclass
bootstrap
May 30, 2026
Arenas Pools and Blocks
python
python/internals
memory-management
allocator
cpython
May 30, 2026
Attribute Lookup Mechanics
python
python/internals
object-model
descriptors
attribute-access
cpython
May 30, 2026
CPython Bytes and Bytearray Internals
python
cpython
internals
data-structures
bytes
bytearray
buffer-protocol
May 30, 2026
CPython Integer Internals
python
cpython
internals
built-in-types
integer
numerics
May 30, 2026
CPython String Internals
python
cpython
internals
data-structures
unicode
string
pep-393
May 30, 2026
Object Creation new init and alloc
python
python/internals
python/object-model
cpython
May 30, 2026
The Value Stack and Frame Evaluation
python
python/internals
python/interpreter
cpython
bytecode
frame
value-stack
May 30, 2026
The pymalloc Allocator
python
python/internals
memory-management
allocator
cpython
May 30, 2026
Type Objects and PyTypeObject
python
python/internals
object-model
cpython
type-system