reviewboard.deprecation¶
Internal support for handling deprecations in Review Board.
The version-specific objects in this module are not considered stable between releases, and may be removed at any point. The base objects are considered stable.
- exception BaseRemovedInReviewBoardVersionWarning[source]¶
Bases:
BaseRemovedInWarning
Base class for a Review Board deprecation warning.
All version-specific deprecation warnings inherit from this, allowing callers to check for Review Board deprecations without being tied to a specific version.
- __annotations__ = {'product': 'str', 'version': 'str', 'version_required': 'bool'}¶
- exception RemovedInReviewBoard70Warning[source]¶
Bases:
BaseRemovedInReviewBoardVersionWarning
Deprecations for features scheduled for removal in Review Board 7.0.
Note that this class will itself be removed in Review Board 7.0. If you need to check against Review Board deprecation warnings, please see
BaseRemovedInReviewBoardVersionWarning
. Alternatively, you can use the alias for this class,RemovedInNextReviewBoardVersionWarning
.- __annotations__ = {'product': 'str', 'version': 'str', 'version_required': 'bool'}¶
- exception RemovedInReviewBoard80Warning[source]¶
Bases:
BaseRemovedInReviewBoardVersionWarning
Deprecations for features scheduled for removal in Review Board 8.0.
Note that this class will itself be removed in Review Board 8.0. If you need to check against Review Board deprecation warnings, please see
BaseRemovedInReviewBoardVersionWarning
.- __annotations__ = {'product': 'str', 'version': 'str', 'version_required': 'bool'}¶