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