Skip to content

Commit

Permalink
Move to 3.14. Add a What's New entry.
Browse files Browse the repository at this point in the history
  • Loading branch information
serhiy-storchaka committed Jul 19, 2024
1 parent 0017071 commit 77b46fc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Doc/library/urllib.parse.rst
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ or on combining URL components into a URL string.
query parameter separator. This has been changed to allow only a single
separator key, with ``&`` as the default separator.

.. deprecated:: 3.13
.. deprecated:: 3.14
Accepting objects with false values (like ``0`` and ``[]``) except empty
strings and byte-like objects and ``None`` is now deprecated.

Expand Down Expand Up @@ -741,7 +741,7 @@ task isn't already covered by the URL parsing functions above.
.. versionchanged:: 3.5
Added the *quote_via* parameter.

.. deprecated:: 3.13
.. deprecated:: 3.14
Accepting objects with false values (like ``0`` and ``[]``) except empty
strings and byte-like objects and ``None`` is now deprecated.

Expand Down
6 changes: 6 additions & 0 deletions Doc/whatsnew/3.14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,12 @@ Deprecated
write new code. The :mod:`subprocess` module is recommended instead.
(Contributed by Victor Stinner in :gh:`120743`.)

* Accepting objects with false values (like ``0`` and ``[]``) except empty
strings, byte-like objects and ``None`` in :mod:`urllib.parse` functions
:func:`~urllib.parse.parse_qsl` and :func:`~urllib.parse.parse_qs` is now
deprecated.
(Contributed by Serhiy Storchaka in :gh:`116897`.)


Removed
=======
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Accepting objects with false values (like ``0`` and ``[]``) except empty
strings and byte-like objects and ``None`` in :mod:`urllib.parse` functions
:func:`urllib.parse.parse_qsl` and :func:`urllib.parse.parse_qs` is now
strings, byte-like objects and ``None`` in :mod:`urllib.parse` functions
:func:`~urllib.parse.parse_qsl` and :func:`~urllib.parse.parse_qs` is now
deprecated.

0 comments on commit 77b46fc

Please sign in to comment.