mirror of https://github.com/python/cpython
Add docs for os.fchdir().
This commit is contained in:
parent
4d1e64bb46
commit
154985587b
|
@ -101,6 +101,7 @@ use a modified environment.
|
||||||
\end{datadesc}
|
\end{datadesc}
|
||||||
|
|
||||||
\begin{funcdescni}{chdir}{path}
|
\begin{funcdescni}{chdir}{path}
|
||||||
|
\funclineni{fchdir}{}
|
||||||
\funclineni{getcwd}{}
|
\funclineni{getcwd}{}
|
||||||
These functions are described in ``Files and Directories'' (section
|
These functions are described in ``Files and Directories'' (section
|
||||||
\ref{os-file-dir}).
|
\ref{os-file-dir}).
|
||||||
|
@ -590,6 +591,14 @@ Change the current working directory to \var{path}.
|
||||||
Availability: Macintosh, \UNIX, Windows.
|
Availability: Macintosh, \UNIX, Windows.
|
||||||
\end{funcdesc}
|
\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}{}
|
\begin{funcdesc}{getcwd}{}
|
||||||
Return a string representing the current working directory.
|
Return a string representing the current working directory.
|
||||||
Availability: Macintosh, \UNIX, Windows.
|
Availability: Macintosh, \UNIX, Windows.
|
||||||
|
|
Loading…
Reference in New Issue