summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2023-07-05 20:38:53 (GMT)
committerGitHub <noreply@github.com>2023-07-05 20:38:53 (GMT)
commitc16ea94abc73c0098b484f7e2ec23bfd9c36b67c (patch)
treee108e641ec6a921e6f571de568a316317c66a09e /Doc/library
parent70e2a42647f2f4b53d0f07c0c7db48ea27e066fa (diff)
downloadcpython-c16ea94abc73c0098b484f7e2ec23bfd9c36b67c.zip
cpython-c16ea94abc73c0098b484f7e2ec23bfd9c36b67c.tar.gz
cpython-c16ea94abc73c0098b484f7e2ec23bfd9c36b67c.tar.bz2
shlex docs: remove outdated note (#106463)
As the versionchanged notice says, this note is no longer true on 3.12+.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/shlex.rst6
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/library/shlex.rst b/Doc/library/shlex.rst
index 0bad518..f94833a 100644
--- a/Doc/library/shlex.rst
+++ b/Doc/library/shlex.rst
@@ -30,12 +30,6 @@ The :mod:`shlex` module defines the following functions:
in POSIX mode by default, but uses non-POSIX mode if the *posix* argument is
false.
- .. note::
-
- Since the :func:`split` function instantiates a :class:`~shlex.shlex`
- instance, passing ``None`` for *s* will read the string to split from
- standard input.
-
.. versionchanged:: 3.12
Passing ``None`` for *s* argument now raises an exception, rather than
reading :data:`sys.stdin`.