diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-04-04 13:50:35 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-04-04 13:50:35 (GMT) |
commit | 80e6af1f61f2d63ff45ada00be841db9ad5e6c9f (patch) | |
tree | cfbb0407e47558862de76b9a005ed8ecc1444b76 | |
parent | ee5f1c13d1ea21c628068fdf142823177f5526c2 (diff) | |
download | cpython-80e6af1f61f2d63ff45ada00be841db9ad5e6c9f.zip cpython-80e6af1f61f2d63ff45ada00be841db9ad5e6c9f.tar.gz cpython-80e6af1f61f2d63ff45ada00be841db9ad5e6c9f.tar.bz2 |
fix versionchanged version
-rw-r--r-- | Doc/library/os.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index d168963..715f654 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1201,9 +1201,9 @@ Files and Directories .. versionadded:: 3.2 The *exist_ok* parameter. - .. versionchanged:: 3.2.5 + .. versionchanged:: 3.2.6 - Before Python 3.2.5, if *exist_ok* was ``True`` and the directory existed, + Before Python 3.2.6, if *exist_ok* was ``True`` and the directory existed, :func:`makedirs` would still raise an error if *mode* did not match the mode of the existing directory. Since this behavior was impossible to implement safely, it was removed in Python 3.2.6. See :issue:`21082`. |