djblets.features.level¶
Stability levels for a feature.
- class FeatureLevel(value)¶
Bases:
IntEnum
Possible stability levels for features.
- UNAVAILABLE = 0¶
The feature is completely unavailable.
Feature checkers will not be consulted in this case.
- EXPERIMENTAL = 10¶
The feature is experimental.
A feature checker must enable this feature.
- BETA = 50¶
The feature is in beta.
A feature checker must enable this feature.
- STABLE = 100¶
The feature is stable and will always be enabled.
- __annotations__ = {}¶