summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-07-26 14:19:57 (GMT)
committerGeorg Brandl <georg@python.org>2009-07-26 14:19:57 (GMT)
commit9fa61bb37d68225c827aa7809382ea701c264db5 (patch)
tree7a086015c9e4ecbb02ad38895cf7dcc4cb7be605 /Doc/library/os.rst
parent74f8fc0b1bccc971a3055b2e364c4a2db5123d50 (diff)
downloadcpython-9fa61bb37d68225c827aa7809382ea701c264db5.zip
cpython-9fa61bb37d68225c827aa7809382ea701c264db5.tar.gz
cpython-9fa61bb37d68225c827aa7809382ea701c264db5.tar.bz2
#6577: fix (hopefully) all links to builtin instead of module/class-specific objects.
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r--Doc/library/os.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index b83e665..01118de 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -606,10 +606,10 @@ by file descriptors.
.. note::
- This function is intended for low-level I/O. For normal usage, use the built-in
- function :func:`open`, which returns a "file object" with :meth:`~file.read` and
- :meth:`~file.write` methods (and many more). To wrap a file descriptor in a "file
- object", use :func:`fdopen`.
+ This function is intended for low-level I/O. For normal usage, use the
+ built-in function :func:`open`, which returns a "file object" with
+ :meth:`~file.read` and :meth:`~file.write` methods (and many more). To
+ wrap a file descriptor in a "file object", use :func:`fdopen`.
.. function:: openpty()
@@ -754,10 +754,10 @@ Files and Directories
.. note::
- Using :func:`access` to check if a user is authorized to e.g. open a file before
- actually doing so using :func:`open` creates a security hole, because the user
- might exploit the short time interval between checking and opening the file to
- manipulate it.
+ Using :func:`access` to check if a user is authorized to e.g. open a file
+ before actually doing so using :func:`open` creates a security hole,
+ because the user might exploit the short time interval between checking
+ and opening the file to manipulate it.
.. note::