[Python-checkins] cpython: Small nits in os doc.

georg.brandl python-checkins at python.org
Sun Jun 24 11:58:31 CEST 2012


http://hg.python.org/cpython/rev/2eb2e7cc444d
changeset:   77685:2eb2e7cc444d
user:        Georg Brandl <georg at python.org>
date:        Sun Jun 24 11:54:07 2012 +0200
summary:
  Small nits in os doc.

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


diff --git a/Doc/library/os.rst b/Doc/library/os.rst
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -645,7 +645,7 @@
 .. function:: closerange(fd_low, fd_high)
 
    Close all file descriptors from *fd_low* (inclusive) to *fd_high* (exclusive),
-   ignoring errors. Equivalent to::
+   ignoring errors. Equivalent to (but much faster than)::
 
       for fd in range(fd_low, fd_high):
           try:
@@ -729,6 +729,7 @@
 
    Availability: Unix, Windows.
 
+
 .. function:: fstatvfs(fd)
 
    Return information about the filesystem containing the file associated with file

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


More information about the Python-checkins mailing list