Add silent deprecation.

This commit is contained in:
Guido van Rossum 2002-05-29 15:43:05 +00:00
parent 00a901aaa0
commit c112da34f8
1 changed files with 8 additions and 0 deletions

View File

@ -152,6 +152,14 @@ Planned features for 2.3
and act on it. For a start, see this message from Neil Norwitz:
http://mail.python.org/pipermail/python-dev/2002-April/023165.html
- Add a new concept, "silent deprecation", with associated warning
SilentDeprecationWarning. This warning is normally suppressed,
but can be enabled by a suitable -W option.
- Use silent deprecation for the types and string modules. This
requires providing alternatives for the parts that aren't
covered yet (e.g. string.whitespace and types.TracebackType).
- Documentation: complete the distribution and installation
manuals.