diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2018-06-19 08:28:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-19 08:28:50 (GMT) |
commit | 698865dcbb302ae742b76be883822f1563764ff9 (patch) | |
tree | 28064c6e361c4e7af8e4ef3db85c82f64e3dbd67 /Doc/whatsnew | |
parent | cb970730e3ca2522e9b1700dcaf0a06b7e898db6 (diff) | |
download | cpython-698865dcbb302ae742b76be883822f1563764ff9.zip cpython-698865dcbb302ae742b76be883822f1563764ff9.tar.gz cpython-698865dcbb302ae742b76be883822f1563764ff9.tar.bz2 |
bpo-33843: Remove deprecated stuff in cgi module (GH-7662)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 10fa182..58be90f 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -136,6 +136,10 @@ Removed to help eliminate confusion as to what Python interpreter the ``pyvenv`` script is tied to. (Contributed by Brett Cannon in :issue:`25427`.) +* ``parse_qs``, ``parse_qsl``, and ``escape`` are removed from :mod:`cgi` + module. They are deprecated from Python 3.2 or older. + + Porting to Python 3.8 ===================== |