Skip to content

Commit b4f81cd

Browse files
DavidCaintomchristie
authored andcommitted
Use correct class to indicate present deprecation (encode#8665)
`PendingDeprecationWarning` means "we plan to deprecate, but haven't yet." A feature that's to be deleted in the next release is not planned to be deprecated; it **is** deprecated. > Base class for warnings about features which are obsolete and expected > to be deprecated in the future, but are not deprecated at the moment. > > This class is rarely used as emitting a warning about a possible > upcoming deprecation is unusual, and DeprecationWarning is preferred for > already active deprecations. https://docs.python.org/3/library/exceptions.html#PendingDeprecationWarning Co-authored-by: Tom Christie <[email protected]>
1 parent 134564a commit b4f81cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rest_framework/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
default_app_config = 'rest_framework.apps.RestFrameworkConfig'
3030

3131

32-
class RemovedInDRF315Warning(PendingDeprecationWarning):
32+
class RemovedInDRF315Warning(DeprecationWarning):
3333
pass

0 commit comments

Comments
 (0)