diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2022-03-23 20:13:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 20:13:08 (GMT) |
commit | e513b8188af4d2f43ab2b96b51bc45bd4f6fd5b6 (patch) | |
tree | aa3f226ffc9bfde32cf185d458cd8e6622c04a88 /Doc/library/cgitb.rst | |
parent | 0bbb6956f83ef457872b8f04242bb02b6898350d (diff) | |
download | cpython-e513b8188af4d2f43ab2b96b51bc45bd4f6fd5b6.zip cpython-e513b8188af4d2f43ab2b96b51bc45bd4f6fd5b6.tar.gz cpython-e513b8188af4d2f43ab2b96b51bc45bd4f6fd5b6.tar.bz2 |
[3.9] bpo-47061: document module deprecations due to PEP 594 (GH-31984) (GH-32082)
Also removed asynchat, asyncore, and smtpd from their respective toctree entries so they are only in the superceded subtree.
(cherry picked from commit 9ac2de922a0f783bd43b8e026e4fb70fd1888572)
Co-authored-by: Brett Cannon <brett@python.org>
Automerge-Triggered-By: GH:brettcannon
Diffstat (limited to 'Doc/library/cgitb.rst')
-rw-r--r-- | Doc/library/cgitb.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/cgitb.rst b/Doc/library/cgitb.rst index 5f3a647..3494146 100644 --- a/Doc/library/cgitb.rst +++ b/Doc/library/cgitb.rst @@ -3,6 +3,7 @@ .. module:: cgitb :synopsis: Configurable traceback handler for CGI scripts. + :deprecated: .. moduleauthor:: Ka-Ping Yee <ping@lfw.org> .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org> @@ -15,6 +16,9 @@ single: exceptions; in CGI scripts single: tracebacks; in CGI scripts +.. deprecated:: 3.11 + The :mod:`cgitb` module is deprecated (see :pep:`594` for details). + -------------- The :mod:`cgitb` module provides a special exception handler for Python scripts. |