diff options
author | Georg Brandl <georg@python.org> | 2005-11-22 20:14:29 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-11-22 20:14:29 (GMT) |
commit | e3faaeb1d68af9794f740ee0e491da2624390492 (patch) | |
tree | 4c4ff0c9eb9102fc9de1674348f751e97c46c731 /Doc | |
parent | 3c9f9ac62bb3b2f96a7735491a82ff57464371bb (diff) | |
download | cpython-e3faaeb1d68af9794f740ee0e491da2624390492.zip cpython-e3faaeb1d68af9794f740ee0e491da2624390492.tar.gz cpython-e3faaeb1d68af9794f740ee0e491da2624390492.tar.bz2 |
Bug #1357604: os.makedirs handles UNC paths
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libos.tex | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index a3918e8..50dad08 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -875,10 +875,9 @@ Like \function{mkdir()}, but makes all intermediate-level directories needed to contain the leaf directory. Throws an \exception{error} exception if the leaf directory already exists or cannot be created. The default \var{mode} -is \code{0777} (octal). This function does not properly handle UNC -paths (only relevant on Windows systems; Universal Naming Convention -paths are those that use the `\code{\e\e host\e path}' syntax). +is \code{0777} (octal). \versionadded{1.5.2} +\versionchanged[This function now handles UNC paths correctly]{2.3} \end{funcdesc} \begin{funcdesc}{pathconf}{path, name} |