Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 2.27 KB

File metadata and controls

40 lines (33 loc) · 2.27 KB

Proxy — where it lives outside this repo

Cited, real implementations to study (or point an agent at) when designing or reviewing proxy-shaped code.

Python standard library

Major ecosystems

What to notice across all of them

Each one mediates exactly one concern (lifetime, laziness, context, recording), none pretend the disguise is complete — weakref.proxy documents which operations see through it, Werkzeug documents isinstance behavior — and the ones that must survive dunders (wrapt) pay a whole library's worth of effort for it.