diff options
author | Zackery Spytz <zspytz@gmail.com> | 2020-04-01 13:58:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-01 13:58:55 (GMT) |
commit | 975ac326ffe265e63a103014fd27e9d098fe7548 (patch) | |
tree | b8a86b68b758d9bf11df94b70735fe5981ed49b3 /Doc/whatsnew/3.9.rst | |
parent | 7c72383f95b0cdedf390726069428d7b69ed2597 (diff) | |
download | cpython-975ac326ffe265e63a103014fd27e9d098fe7548.zip cpython-975ac326ffe265e63a103014fd27e9d098fe7548.tar.gz cpython-975ac326ffe265e63a103014fd27e9d098fe7548.tar.bz2 |
bpo-33262: Deprecate passing None for `s` to shlex.split() (GH-6514)
* bpo-33262: Deprecate passing None for `s` to shlex.split()
This reads the string to split from standard input.
* Update What's New.
* Fix shlex.rst
Diffstat (limited to 'Doc/whatsnew/3.9.rst')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 59083da..6ea4ad8 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -624,6 +624,9 @@ Deprecated by :c:func:`Py_Initialize()` since Python 3.7. (Contributed by Victor Stinner in :issue:`39877`.) +* Passing ``None`` as the first argument to the :func:`shlex.split` function + has been deprecated. (Contributed by Zackery Spytz in :issue:`33262`.) + Removed ======= |