LocalsNone
LocalsNone is a term used in programming and software engineering to denote a sentinel value that signals the absence of a local execution context, typically the absence of local variables within a function or block. It is not a standard keyword in mainstream languages, but appears in discussions, libraries, or tooling that model or inspect symbol tables and scopes. The term blends "locals" and "None" (or null) to convey emptiness.
In practice, localsNone would be used as a placeholder in APIs that pass around a mapping of
The concept intersects with sentinel values and the practice of using a dedicated constant to avoid null
In languages that already have clear representations of absence (such as None in Python, null in Java
See also: locals(), sentinel value, null, None, symbol table, scope.