Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.84 KB

File metadata and controls

36 lines (29 loc) · 1.84 KB

Sentinel Object — where it lives outside this repo

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

Python standard library

Language evolution

What to notice across all of them

The healthy examples are all out-of-band (a fresh object no domain can produce) and named (debuggable). The stdlib's one in-band survivor, str.find, is the pattern's standing warning label.