vault
Search
Search
Dark mode
Light mode
Explorer
Tag: python
89 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
Bound and Unbound Methods
python
cpython
methods
descriptors
bound-method
attribute-access
python-internals
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 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
CPython vs PyPy and Alternative Implementations
python
python/internals
python/implementations
pypy
jit
Jun 01, 2026
Capsules and Opaque Pointers
python
cpython
c-api
capsules
opaque-pointers
extension-modules
pycapsule
uncertain
Jun 01, 2026
Chained Comparison and Operator Precedence Surprises
python
gotcha
operators
precedence
parsing
comparison
bitwise
Jun 01, 2026
Circular Import Mechanics
python
cpython
import-system
circular-imports
sys-modules
debugging
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
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
Floating Point Pitfalls in Python
python
gotcha
numerics
float
ieee754
decimal
rounding
uncertain
Jun 01, 2026
Free Lists
python
cpython
internals
memory
allocator
free-list
free-threading
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
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
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
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
Protocols and Structural Typing
python
typing
protocol
structural-typing
duck-typing
static-analysis
type-system
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
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
Subinterpreters
python
python/internals
python/concurrency
parallelism
subinterpreters
gil
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 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 Global and Nonlocal Statement Traps
python
python-internals
gotcha
scoping
closures
unboundlocalerror
global
nonlocal
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 Memory Allocator Domains
python
cpython
internals
memory
allocator
c-api
Jun 01, 2026
The PEG Parser
python
python/internals
python/compiler
parser
peg
Jun 01, 2026
The faulthandler Module
python
cpython
internals
debugging
observability
crash-diagnostics
signals
Jun 01, 2026
The gc Module
python
python/internals
garbage-collection
gc
gc-module
stdlib
introspection
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
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
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
Abstract Base Classes
python
abc
type-system
metaclass
nominal-typing
collections-abc
duck-typing
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
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
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
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
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
May 07, 2026
Mutability and Aliasing Bugs
swe-interview-prep
foundations
debugging
pitfalls
python
mutability
aliasing
semantics