diff options
author | Victor Stinner <vstinner@python.org> | 2023-05-24 09:04:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 09:04:53 (GMT) |
commit | 08d592389603500af398d278af4842cff6f22c33 (patch) | |
tree | cc7fd2bdd678869fe361cec2eb9ca244474f5eaa /Doc/whatsnew/3.11.rst | |
parent | e561c09975bf67ad8bb67c56a81e30a9165bcc84 (diff) | |
download | cpython-08d592389603500af398d278af4842cff6f22c33.zip cpython-08d592389603500af398d278af4842cff6f22c33.tar.gz cpython-08d592389603500af398d278af4842cff6f22c33.tar.bz2 |
gh-104773: PEP 594: Remove cgi and cgitb modules (#104775)
* Replace "cgi" with "!cgi" in the Sphinx documentation to avoid
warnings on broken references.
* test_pyclbr no longer tests the cgi module.
Diffstat (limited to 'Doc/whatsnew/3.11.rst')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 8aadc2a..d024b85 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -1735,9 +1735,9 @@ Modules +---------------------+---------------------+---------------------+---------------------+---------------------+ | :mod:`audioop` | :mod:`crypt` | :mod:`nis` | :mod:`sndhdr` | :mod:`uu` | +---------------------+---------------------+---------------------+---------------------+---------------------+ - | :mod:`cgi` | :mod:`imghdr` | :mod:`nntplib` | :mod:`spwd` | :mod:`xdrlib` | + | :mod:`!cgi` | :mod:`imghdr` | :mod:`nntplib` | :mod:`spwd` | :mod:`xdrlib` | +---------------------+---------------------+---------------------+---------------------+---------------------+ - | :mod:`cgitb` | :mod:`mailcap` | :mod:`ossaudiodev` | :mod:`sunau` | | + | :mod:`!cgitb` | :mod:`mailcap` | :mod:`ossaudiodev` | :mod:`sunau` | | +---------------------+---------------------+---------------------+---------------------+---------------------+ (Contributed by Brett Cannon in :issue:`47061` and Victor Stinner in |