diff options
author | Georg Brandl <georg@python.org> | 2010-07-14 08:00:22 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-14 08:00:22 (GMT) |
commit | e767e047c82b243d4fdce6ace2196dc0459f47c4 (patch) | |
tree | f678be67b90e3ccb19c01d8d2cae7ac5f98faba5 /Doc | |
parent | 996903120cd078eb4a2544adb70e03fd059c8986 (diff) | |
download | cpython-e767e047c82b243d4fdce6ace2196dc0459f47c4.zip cpython-e767e047c82b243d4fdce6ace2196dc0459f47c4.tar.gz cpython-e767e047c82b243d4fdce6ace2196dc0459f47c4.tar.bz2 |
#9258: fix copy-paste errors.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/select.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/select.rst b/Doc/library/select.rst index 60a894f..829b2a1 100644 --- a/Doc/library/select.rst +++ b/Doc/library/select.rst @@ -41,14 +41,14 @@ The module defines the following: .. function:: kqueue() - (Only supported on BSD.) Returns a kernel queue object object; see section + (Only supported on BSD.) Returns a kernel queue object; see section :ref:`kqueue-objects` below for the methods supported by kqueue objects. .. function:: kevent(ident, filter=KQ_FILTER_READ, flags=KQ_EV_ADD, fflags=0, data=0, udata=0) - (Only supported on BSD.) Returns a kernel event object object; see section - :ref:`kevent-objects` below for the methods supported by kqueue objects. + (Only supported on BSD.) Returns a kernel event object; see section + :ref:`kevent-objects` below for the methods supported by kevent objects. .. function:: select(rlist, wlist, xlist[, timeout]) |