Kaydet (Commit) b1a1ac0b authored tarafından Georg Brandl's avatar Georg Brandl

Small nits in os doc.

üst d60cd429
...@@ -645,7 +645,7 @@ as internal buffering of data. ...@@ -645,7 +645,7 @@ as internal buffering of data.
.. function:: closerange(fd_low, fd_high) .. function:: closerange(fd_low, fd_high)
Close all file descriptors from *fd_low* (inclusive) to *fd_high* (exclusive), 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): for fd in range(fd_low, fd_high):
try: try:
...@@ -729,6 +729,7 @@ as internal buffering of data. ...@@ -729,6 +729,7 @@ as internal buffering of data.
Availability: Unix, Windows. Availability: Unix, Windows.
.. function:: fstatvfs(fd) .. function:: fstatvfs(fd)
Return information about the filesystem containing the file associated with file Return information about the filesystem containing the file associated with file
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment