[Python-checkins] bpo-37478: Add missing 'and'. (GH-14631)

Terry Jan Reedy webhook-mailer at python.org
Sat Jul 6 22:44:04 EDT 2019


https://github.com/python/cpython/commit/a9b40e4546ca631e5ab41376b5b72e8f296f557d
commit: a9b40e4546ca631e5ab41376b5b72e8f296f557d
branch: master
author: Terry Jan Reedy <tjreedy at udel.edu>
committer: GitHub <noreply at github.com>
date: 2019-07-06T22:44:01-04:00
summary:

bpo-37478: Add missing 'and'. (GH-14631)

files:
M Doc/library/os.rst

diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 760c05c6e52d..519d5581603b 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -1599,7 +1599,7 @@ features:
    This function can support :ref:`specifying a file descriptor <path_fd>`.  The
    descriptor must refer to an opened directory, not an open file.
 
-   This function can raise :exc:`OSError` subclasses such as
+   This function can raise :exc:`OSError` and subclasses such as
    :exc:`FileNotFoundError`, :exc:`PermissionError`, and :exc:`NotADirectoryError`.
 
    .. versionadded:: 3.3



More information about the Python-checkins mailing list