From: Benjamin Peterson Date: Fri, 4 Apr 2014 13:50:35 +0000 (-0400) Subject: fix versionchanged version X-Git-Tag: v3.3.6rc1~16^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80e6af1f61f2d63ff45ada00be841db9ad5e6c9f;p=python fix versionchanged version --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index d1689631aa..715f6543b7 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`.