#14436 closed (fixed)
Bump PendingDeprecationWarnings to DeprecationWarnings
Reported by: | Russell Keith-Magee | Owned by: | Russell Keith-Magee |
---|---|---|---|
Component: | Core (Other) | Version: | 1.2 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The PendingDeprecationWarnings introduced in Django 1.2 need to be escalated to full DeprecationWarnings. The test suite will then require additional checks to silence warnings known to occur.
The small number of full DeprecationWarnings in 1.2 need to be escalated to a removal from the codebase. This means admin.site.root() and the SetRemoteAddrFromForwardedFor Middleware.
See also #13588, which does the deprecation for admin.site.root, as well as other changes to make the admin site make the most of the URL reversal tools that are now guaranteed available.
Change History (3)
comment:1 by , 14 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
(In [14138]) Fixed #14436 -- Escalated 1.2 PendingDeprecationWarnings to DeprecationWarnings, and removed 1.1 deprecated code.