summaryrefslogtreecommitdiffstats
path: root/Doc/library/select.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-04-24 02:34:53 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-04-24 02:34:53 (GMT)
commit35e8c4653455ceeac5b49b369b4c11be6096ea17 (patch)
tree56520e401f31f82834da704af56430a70683bac8 /Doc/library/select.rst
parent3513358e11df32cc02047e48a9a9a976343ba16c (diff)
downloadcpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.zip
cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.gz
cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.bz2
remove some old versionchanged and versionadded directives
Diffstat (limited to 'Doc/library/select.rst')
-rw-r--r--Doc/library/select.rst8
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/library/select.rst b/Doc/library/select.rst
index 3fef993..102d3ea 100644
--- a/Doc/library/select.rst
+++ b/Doc/library/select.rst
@@ -31,8 +31,6 @@ The module defines the following:
section :ref:`epoll-objects` below for the methods supported by epolling
objects.
- .. versionadded:: 2.6
-
.. function:: poll()
@@ -47,16 +45,12 @@ The module defines the following:
(Only supported on BSD.) Returns a kernel queue object object; see section
:ref:`kqueue-objects` below for the methods supported by kqueue objects.
- .. versionadded:: 2.6
-
.. function:: kqueue(ident, filter=KQ_FILTER_READ, flags=KQ_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.
- .. versionadded:: 2.6
-
.. function:: select(iwtd, owtd, ewtd[, timeout])
@@ -224,8 +218,6 @@ linearly scanned again. :cfunc:`select` is O(highest file descriptor), while
that was never registered causes an :exc:`IOError` exception with errno
:const:`ENOENT` to be raised.
- .. versionadded:: 2.6
-
.. method:: poll.unregister(fd)