]> granicus.if.org Git - python/commitdiff
Add docs for os.fchdir().
authorFred Drake <fdrake@acm.org>
Mon, 15 Apr 2002 19:41:27 +0000 (19:41 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 15 Apr 2002 19:41:27 +0000 (19:41 +0000)
Doc/lib/libos.tex

index 6a07ab1c115dc6def7cfd07694b300f0829a736e..5819f80609db7a1d9b08339301f65b743d927e88 100644 (file)
@@ -101,6 +101,7 @@ use a modified environment.
 \end{datadesc}
 
 \begin{funcdescni}{chdir}{path}
+\funclineni{fchdir}{}
 \funclineni{getcwd}{}
 These functions are described in ``Files and Directories'' (section
 \ref{os-file-dir}).
@@ -590,6 +591,14 @@ Change the current working directory to \var{path}.
 Availability: Macintosh, \UNIX, Windows.
 \end{funcdesc}
 
+\begin{funcdesc}{fchdir}{fd}
+Change the current working directory to the directory represented by
+the file descriptor \var{fd}.  The descriptor must refer to an opened
+directory, not an open file.
+Availability: \UNIX.
+\versionadded{2.3}
+\end{funcdesc}
+
 \begin{funcdesc}{getcwd}{}
 Return a string representing the current working directory.
 Availability: Macintosh, \UNIX, Windows.