summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-04-01 23:22:06 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-04-01 23:22:06 (GMT)
commit1acc69c650edbea4e273f2184168d1fde5a74911 (patch)
treee396a7469ace21d937ec431012bd73732be92c1f /Doc/library/os.rst
parent9dc203fff90c04baf3b9e4410ceba4a25d893b3c (diff)
downloadcpython-1acc69c650edbea4e273f2184168d1fde5a74911.zip
cpython-1acc69c650edbea4e273f2184168d1fde5a74911.tar.gz
cpython-1acc69c650edbea4e273f2184168d1fde5a74911.tar.bz2
update version changed
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r--Doc/library/os.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 326114f..3d492ba 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -1632,12 +1632,12 @@ features:
.. versionadded:: 3.2
The *exist_ok* parameter.
- .. versionchanged:: 3.3.6
+ .. versionchanged:: 3.4.1
- Before Python 3.3.6, if *exist_ok* was ``True`` and the directory existed,
+ Before Python 3.4.1, 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.3.6. See :issue:`21082`.
+ implement safely, it was removed in Python 3.4.1. See :issue:`21082`.
.. function:: mkfifo(path, mode=0o666, *, dir_fd=None)