diff options
author | Victor Stinner <vstinner@python.org> | 2023-05-31 12:54:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 12:54:07 (GMT) |
commit | 0430e97097a8f852aea21669e7f4203d028114f9 (patch) | |
tree | 8e13671efaeeec7d2572821bfe1fa4c43fead909 | |
parent | 03ad6624c2b4a30cccf6d5b7e2b9999e104444ae (diff) | |
download | cpython-0430e97097a8f852aea21669e7f4203d028114f9.zip cpython-0430e97097a8f852aea21669e7f4203d028114f9.tar.gz cpython-0430e97097a8f852aea21669e7f4203d028114f9.tar.bz2 |
gh-104773: cgi: Fix typo in What's New in Python 3.13 (#105139)
-rw-r--r-- | Doc/whatsnew/3.13.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 6d0be3b..59c7f78 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -169,7 +169,7 @@ Removed (Contributed by Hugo van Kemenade in :gh:`104835`.) -* :pep:`594`: Remove the :mod:`!cgi`` and :mod:`!cgitb` modules, +* :pep:`594`: Remove the :mod:`!cgi` and :mod:`!cgitb` modules, deprecated in Python 3.11. * ``cgi.FieldStorage`` can typically be replaced with |