docs/uselect: ipoll: Fix grammar/wording of one-shot flag description.

pull/3522/head
Paul Sokolovsky 2017-11-30 20:32:49 +02:00
rodzic 7d25a19220
commit cb9da2279b
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -83,10 +83,10 @@ Methods
way to poll on streams.
If *flags* is 1, one-shot behavior for events is employed: streams for
which events happened, event mask will be automatically reset (equivalent
to ``poll.modify(obj, 0)``), so new events for such a stream won't be
processed until new mask is set with `poll.modify()`. This behavior is
useful for asynchronous I/O schedulers.
which events happened will have their event masks automatically reset
(equivalent to ``poll.modify(obj, 0)``), so new events for such a stream
won't be processed until new mask is set with `poll.modify()`. This
behavior is useful for asynchronous I/O schedulers.
.. admonition:: Difference to CPython
:class: attention