This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Implement Pending (Silent) Deprecation
Type: Stage:
Components: Interpreter Core Versions: Python 2.3
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: gvanrossum, nnorwitz, rhettinger
Priority: normal Keywords: patch

Created on 2002-05-29 15:16 by nnorwitz, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
pendingdep.diff nnorwitz, 2002-05-29 15:16 patch to impl PendingDeprecationWarning
Messages (4)
msg40168 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-05-29 15:16
This patch should implement most of what is necessary
to support pending deprecations.
I called it PendingDeprecationWarning, rather than
SilentDeprecationWarning
as briefly discussed on python-dev.

It seems to describe what it is, rather than what it does.
Includes code & doc changes.
msg40169 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2002-05-29 15:30
Logged In: YES 
user_id=80475

+1

Is there a way to keep PendingDeprecations silent but still 
visible (audible?) to PyChecker?
msg40170 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-05-29 15:33
Logged In: YES 
user_id=33168

Yes, the warnings can be enabled/disabled.  
And I intend to do that.
msg40171 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2002-05-29 15:47
Logged In: YES 
user_id=6380

Cool! I agree with the name change. Check it in!
History
Date User Action Args
2022-04-10 16:05:22adminsetgithub: 36663
2002-05-29 15:16:51nnorwitzcreate