diff options
author | Christian Heimes <christian@python.org> | 2022-07-29 14:42:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-29 14:42:09 (GMT) |
commit | f81a6c5fc7b13bd2076bdb1481c6085e0ed67184 (patch) | |
tree | d8216a6e0ec90c2328ba7b48c8deef7d169abe6a /Doc/library/pipes.rst | |
parent | 2fbee85931296bbeddae6358583e400ce5321f89 (diff) | |
download | cpython-f81a6c5fc7b13bd2076bdb1481c6085e0ed67184.zip cpython-f81a6c5fc7b13bd2076bdb1481c6085e0ed67184.tar.gz cpython-f81a6c5fc7b13bd2076bdb1481c6085e0ed67184.tar.bz2 |
gh-95415: Make availability directive consistent (GH-95416)
Diffstat (limited to 'Doc/library/pipes.rst')
-rw-r--r-- | Doc/library/pipes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pipes.rst b/Doc/library/pipes.rst index 245dd0d..471ae0d 100644 --- a/Doc/library/pipes.rst +++ b/Doc/library/pipes.rst @@ -23,7 +23,7 @@ The :mod:`pipes` module defines a class to abstract the concept of a *pipeline* Because the module uses :program:`/bin/sh` command lines, a POSIX or compatible shell for :func:`os.system` and :func:`os.popen` is required. -.. availability:: Unix. Not available on VxWorks. +.. availability:: Unix, not VxWorks. The :mod:`pipes` module defines the following class: |