8000 Remove old deprecation classes for 3.14 release (#8664) · encode/django-rest-framework@f34f156 · GitHub
[go: up one dir, main page]

Skip to content

Commit f34f156

Browse files
authored
Remove old deprecation classes for 3.14 release (#8664)
When DRF 3.14 is released, these exception classes will be meaningless, so we can delete them (this has always been done). A previous PR removed the last incidence of `RemovedInDRF313Warning`, but didn't outright delete the class for fear of shipping a breaking change: #8589
1 parent c6cafc9 commit f34f156

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

rest_framework/__init__.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,5 @@
2929
default_app_config = 'rest_framework.apps.RestFrameworkConfig'
3030

3131

32-
class RemovedInDRF313Warning(DeprecationWarning):
33-
pass
34-
35-
36-
class RemovedInDRF314Warning(PendingDeprecationWarning):
37-
pass
38-
39-
4032
class RemovedInDRF315Warning(PendingDeprecationWarning):
4133
pass

0 commit comments

Comments
 (0)
0