Added RemovedInDjango21Warning

This commit is contained in:
Tim Graham 2016-05-28 21:12:39 -04:00
parent cbea13f344
commit 6f520bf7d8
2 changed files with 13 additions and 2 deletions

View File

@ -4,14 +4,17 @@ import inspect
import warnings import warnings
class RemovedInDjango20Warning(PendingDeprecationWarning): class RemovedInDjango20Warning(DeprecationWarning):
pass pass
class RemovedInNextVersionWarning(DeprecationWarning): class RemovedInDjango21Warning(PendingDeprecationWarning):
pass pass
RemovedInNextVersionWarning = RemovedInDjango20Warning
class warn_about_renamed_method(object): class warn_about_renamed_method(object):
def __init__(self, class_name, old_method_name, new_method_name, deprecation_warning): def __init__(self, class_name, old_method_name, new_method_name, deprecation_warning):
self.class_name = class_name self.class_name = class_name

View File

@ -7,6 +7,14 @@ in a backward incompatible way, following their deprecation, as per the
:ref:`deprecation policy <internal-release-deprecation-policy>`. More details :ref:`deprecation policy <internal-release-deprecation-policy>`. More details
about each item can often be found in the release notes of two versions prior. about each item can often be found in the release notes of two versions prior.
.. _deprecation-removed-in-2.1:
2.1
---
See the :ref:`Django 1.11 release notes<deprecated-features-1.11>` for more
details on these changes.
.. _deprecation-removed-in-2.0: .. _deprecation-removed-in-2.0:
2.0 2.0