Description
Provides sentinel objects for Python code that needs a clear value meaning "missing", "not set", or another special state. Sentinels help avoid confusing real values such as None, False, or empty strings with intentional markers.
Developers use it as a small library in APIs, configuration handling, and defaults. It does not add a visible program; it makes code intent clearer when ordinary values are not expressive enough.