[Python-checkins] cpython (3.5): Make it clearer that the constants in the selectors docs are module-level

brett.cannon python-checkins at python.org
Sat Sep 19 00:21:28 CEST 2015


https://hg.python.org/cpython/rev/8054a9f788e7
changeset:   98063:8054a9f788e7
branch:      3.5
parent:      98061:7fcff838d09e
user:        Brett Cannon <brett at python.org>
date:        Fri Sep 18 15:21:02 2015 -0700
summary:
  Make it clearer that the constants in the selectors docs are module-level

files:
  Doc/library/selectors.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/selectors.rst b/Doc/library/selectors.rst
--- a/Doc/library/selectors.rst
+++ b/Doc/library/selectors.rst
@@ -50,8 +50,8 @@
 
 
 In the following, *events* is a bitwise mask indicating which I/O events should
-be waited for on a given file object. It can be a combination of the constants
-below:
+be waited for on a given file object. It can be a combination of the modules
+constants below:
 
    +-----------------------+-----------------------------------------------+
    | Constant              | Meaning                                       |

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list