vault
Search
Search
Dark mode
Light mode
Explorer
Tag: python
56 items with this tag.
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 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
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
Code Objects
python
python/internals
python/compiler
bytecode
code-object
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
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
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
Remote Debugging in CPython
python
cpython
debugging
observability
remote-debugging
pep-768
eval-breaker
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 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 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 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
Bytecode Caching and pyc Files
python
python/internals
python/compiler
bytecode
pyc
import-system
marshal
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 type and object Relationship
python
python/internals
cpython
type-system
object-model
metaclass
bootstrap
May 30, 2026
CPython Bytes and Bytearray Internals
python
cpython
internals
data-structures
bytes
bytearray
buffer-protocol
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