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

Miss Islington (bot) webhook-mailer at python.org
Sat Jul 6 22:49:42 EDT 2019


https://github.com/python/cpython/commit/e841a54206c65770aeb2b936cdc830dd4ed8bf9e
commit: e841a54206c65770aeb2b936cdc830dd4ed8bf9e
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-07-06T19:49:39-07:00
summary:

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

(cherry picked from commit a9b40e4546ca631e5ab41376b5b72e8f296f557d)

Co-authored-by: Terry Jan Reedy <tjreedy at udel.edu>

files:
M Doc/library/os.rst

diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 856ef2b2dbe4..24f14480ae04 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -1566,7 +1566,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