diff options
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/exceptions.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index d5d81df..0e60636 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -690,8 +690,10 @@ depending on the system error code. .. exception:: NotADirectoryError - Raised when a directory operation (such as :func:`os.listdir`) is requested - on something which is not a directory. + Raised when a directory operation (such as :func:`os.listdir`) is requested on + something which is not a directory. On most POSIX platforms, it may also be + raised if an operation attempts to open or traverse a non-directory file as if + it were a directory. Corresponds to :c:data:`errno` ``ENOTDIR``. .. exception:: PermissionError |