diff options
-rw-r--r-- | Doc/documenting/markup.rst | 5 | ||||
-rw-r--r-- | Doc/library/io.rst | 10 | ||||
-rw-r--r-- | Doc/library/select.rst | 6 |
3 files changed, 11 insertions, 10 deletions
diff --git a/Doc/documenting/markup.rst b/Doc/documenting/markup.rst index eb73cf6257..2ff3c6459f 100644 --- a/Doc/documenting/markup.rst +++ b/Doc/documenting/markup.rst @@ -502,8 +502,9 @@ in a different style: .. describe:: option - A command-line option to an executable program. The leading hyphen(s) must - be included. + A command-line option of Python. The leading hyphen(s) must be included. + If a matching ``cmdoption`` directive exists, it is linked to. For options + of other programs or scripts, use simple ````code```` markup. .. describe:: program diff --git a/Doc/library/io.rst b/Doc/library/io.rst index c755a2b0a9..608f4f8020 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -66,11 +66,11 @@ Module Interface Open *file* and return a corresponding stream. If the file cannot be opened, an :exc:`IOError` is raised. - *file* is either a string giving the name (and the path if the file isn't - in the current working directory) of the file to be opened or an integer - file descriptor of the file to be wrapped. (If a file descriptor is given, - for example, from :func:`os.fdopen`, it is closed when the returned I/O - object is closed, unless *closefd* is set to ``False``.) + *file* is either a string giving the pathname (absolute or + relative to the current working directory) of the file to be opened or + an integer file descriptor of the file to be wrapped. (If a file descriptor + is given, it is closed when the returned I/O object is closed, unless + *closefd* is set to ``False``.) *mode* is an optional string that specifies the mode in which the file is opened. It defaults to ``'r'`` which means open for reading in text mode. diff --git a/Doc/library/select.rst b/Doc/library/select.rst index 04d6208b23..f3d84e03e3 100644 --- a/Doc/library/select.rst +++ b/Doc/library/select.rst @@ -44,7 +44,7 @@ The module defines the following: .. function:: kqueue() - (Only supported on BSD.) Returns a kernel queue object object; see section + (Only supported on BSD.) Returns a kernel queue object; see section :ref:`kqueue-objects` below for the methods supported by kqueue objects. .. versionadded:: 2.6 @@ -52,8 +52,8 @@ The module defines the following: .. function:: kevent(ident, filter=KQ_FILTER_READ, flags=KQ_EV_ADD, fflags=0, data=0, udata=0) - (Only supported on BSD.) Returns a kernel event object object; see section - :ref:`kevent-objects` below for the methods supported by kqueue objects. + (Only supported on BSD.) Returns a kernel event object; see section + :ref:`kevent-objects` below for the methods supported by kevent objects. .. versionadded:: 2.6 |