diff options
author | Simon Willison <swillison@gmail.com> | 2019-09-11 14:25:26 (GMT) |
---|---|---|
committer | Stéphane Wirtel <stephane@wirtel.be> | 2019-09-11 14:25:25 (GMT) |
commit | 1abf54336fd2cb545c453d22dd5501392b3350b2 (patch) | |
tree | 7b3d00799d78883ccc3a6d57325cebd5d60be5a9 /Doc/whatsnew/3.8.rst | |
parent | 51adfc6ed2c6c466dda84edc11d9b2b8ae2903e8 (diff) | |
download | cpython-1abf54336fd2cb545c453d22dd5501392b3350b2.zip cpython-1abf54336fd2cb545c453d22dd5501392b3350b2.tar.gz cpython-1abf54336fd2cb545c453d22dd5501392b3350b2.tar.bz2 |
Doc: Indicate locations of parse_qs, parse_qsl, escape (GH-14828)
Since they have been removed from cgi it's useful to remind people where they
can be found instead.
Diffstat (limited to 'Doc/whatsnew/3.8.rst')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 07202ea..aefe9b5 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -1467,7 +1467,8 @@ The following features and APIs have been removed from Python 3.8: 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. + module. They are deprecated from Python 3.2 or older. They should be imported + from the ``urllib.parse`` and ``html`` modules instead. * ``filemode`` function is removed from :mod:`tarfile` module. It is not documented and deprecated since Python 3.3. |