bpo-30677: [doc] mention that os.mkdir() can raise FileNotFoundError (GH-31548)

This commit is contained in:
slateny 2022-03-14 12:57:10 -07:00 committed by GitHub
parent 3dcc396219
commit 879fbd9472
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -2050,7 +2050,8 @@ features:
Create a directory named *path* with numeric mode *mode*.
If the directory already exists, :exc:`FileExistsError` is raised.
If the directory already exists, :exc:`FileExistsError` is raised. If a parent
directory in the path does not exist, :exc:`FileNotFoundError` is raised.
.. _mkdir_modebits: