summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libos.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-08-06 13:45:42 (GMT)
committerFred Drake <fdrake@acm.org>1998-08-06 13:45:42 (GMT)
commit56fa8a7e4bf376807567191eea8581ff684f1d33 (patch)
tree2b89ecfec7fdcafdc9c2dad13c6386dcd8b38d88 /Doc/lib/libos.tex
parent4163e708edbe17c813c25358a34bbfa6372cf050 (diff)
downloadcpython-56fa8a7e4bf376807567191eea8581ff684f1d33.zip
cpython-56fa8a7e4bf376807567191eea8581ff684f1d33.tar.gz
cpython-56fa8a7e4bf376807567191eea8581ff684f1d33.tar.bz2
Marked makedirs(), removedirs(), renames() as added in 1.5.2.
Diffstat (limited to 'Doc/lib/libos.tex')
-rw-r--r--Doc/lib/libos.tex3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex
index b0ca13f..996c38c 100644
--- a/Doc/lib/libos.tex
+++ b/Doc/lib/libos.tex
@@ -85,6 +85,7 @@ doesn't have a \code{'PATH'} key.
\end{datadesc}
\begin{funcdesc}{makedirs}{path\optional{, mode}}
+\versionadded{1.5.2}
Recursive directory creation function. Like \function{mkdir()},
but makes all intermediate-level directories needed to contain the
leaf directory. Throws an \exception{os.error} exception if the leaf
@@ -93,6 +94,7 @@ is \code{0777} (octal).
\end{funcdesc}
\begin{funcdesc}{removedirs}{path}
+\versionadded{1.5.2}
Recursive directory removal function. Works like
\function{rmdir()} except that, if the leaf directory is
successfully removed, directories corresponding to rightmost path
@@ -103,6 +105,7 @@ exception if the leaf directory could not be successfully removed.
\end{funcdesc}
\begin{funcdesc}{renames}{path}
+\versionadded{1.5.2}
Recursive directory or file renaming function.
Works like \function{rename()}, except creation of any intermediate
directories needed to make the new pathname good is attempted first.