vault
Search
Search
Dark mode
Light mode
Explorer
Tag: python/internals
55 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
Biased Reference Counting
python
python/internals
python/free-threading
reference-counting
garbage-collection
concurrency
Jun 01, 2026
CPython Compilation Pipeline
python
python/internals
python/compiler
bytecode
compilation-pipeline
Jun 01, 2026
CPython Dict Internals
python
python/internals
data-structures
hash-table
cpython
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 vs PyPy and Alternative Implementations
python
python/internals
python/implementations
pypy
jit
Jun 01, 2026
Code Objects
python
python/internals
python/compiler
bytecode
code-object
Jun 01, 2026
Compiler Optimization Passes
python
python/internals
python/compiler
bytecode
optimization
constant-folding
Jun 01, 2026
Comprehension Scoping
python
python/internals
python/functions
comprehensions
scoping
bytecode
pep-709
uncertain
Jun 01, 2026
Dunder Methods and the Data Model
python
python/internals
python/data-model
cpython
object-model
type-system
Jun 01, 2026
Free-Threaded CPython
python
python/internals
python/free-threading
gil
concurrency
Jun 01, 2026
Free-Threading Performance Trade-offs
python
python/internals
python/free-threading
performance
concurrency
Jun 01, 2026
Instruction Dispatch and Computed Gotos
python
python/internals
interpreter
performance
python/bytecode
uncertain
Jun 01, 2026
Integer and String Identity Surprises
python
python/internals
python/gotcha
identity
interning
cpython
Jun 01, 2026
Late Binding Closures
python
python/internals
python/gotcha
closures
late-binding
loops
linting
Jun 01, 2026
Mutable Default Arguments
python
python/internals
python/gotcha
functions
defaults
mutable-state
linting
Jun 01, 2026
Object Identity and Interning
python
python/internals
python/object-model
cpython
identity
interning
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 Bytecode Instruction Set
python
python/internals
python/bytecode
interpreter
compiler
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
Sampling Profilers and py-spy
python
python/internals
cpython
profiling
performance
observability
py-spy
sampling
Jun 01, 2026
Subinterpreters
python
python/internals
python/concurrency
parallelism
subinterpreters
gil
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 Context Manager Protocol
python
python/internals
python/data-model
context-manager
protocol
contextlib
dunder
Jun 01, 2026
The Cyclic Garbage Collector
python
python/internals
python/memory
garbage-collection
cpython
Jun 01, 2026
The Incremental GC and Its Reversion
python
python/internals
garbage-collection
gc
incremental-gc
version-archaeology
python-314
Jun 01, 2026
The PEG Parser
python
python/internals
python/compiler
parser
peg
Jun 01, 2026
The gc Module
python
python/internals
garbage-collection
gc
gc-module
stdlib
introspection
Jun 01, 2026
The with Statement and Cleanup
python
python/internals
python/compiler
bytecode
with-statement
context-manager
exceptions
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
May 31, 2026
Bytecode Caching and pyc Files
python
python/internals
python/compiler
bytecode
pyc
import-system
marshal
May 31, 2026
Bytecode Compilation
python
python/internals
compiler
bytecode
code-generation
May 31, 2026
Cell Variables and Closures
python
python/internals
python/functions
closures
cell-variables
bytecode
May 31, 2026
Coroutines and the async await Protocol
python
python/internals
concurrency
asyncio
coroutines
async-await
May 31, 2026
Fast Locals and the LOAD_FAST Family
python
python/internals
python/bytecode
frames
performance
May 31, 2026
GIL Mechanics and the Switch Interval
python
python/internals
cpython
gil
concurrency
threading
scheduling
May 31, 2026
Python Abstract Syntax Tree
python
python/internals
python/compiler
ast
asdl
May 31, 2026
Python Threading Model
python
python/internals
cpython
concurrency
threading
gil
May 31, 2026
The Iterator Protocol
python
python/internals
python/data-model
protocol/iterator
May 31, 2026
The dis Module and Bytecode Disassembly
python
python/internals
python/bytecode
dis
debugging-tools
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
Object Creation new init and alloc
python
python/internals
python/object-model
cpython
May 30, 2026
Python Execution Model
python
python/internals
python/execution-model
scoping
namespaces
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