Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.79 KB

File metadata and controls

34 lines (27 loc) · 1.79 KB

Global Object — where it lives outside this repo

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

Python standard library

Major ecosystems

What to notice across all of them

Every healthy global is either immutable, lazily built, or mutable by documented design — there is no fourth kind in the wild. When reviewing, classify each module global into one of the three; whatever resists classification is the bug.