Commit bbf4a6a2 authored by Martin v. Löwis's avatar Martin v. Löwis

Document patch #594001.

parent 60bdaa6f
...@@ -635,6 +635,12 @@ Return a string representing the current working directory. ...@@ -635,6 +635,12 @@ Return a string representing the current working directory.
Availability: Macintosh, \UNIX, Windows. Availability: Macintosh, \UNIX, Windows.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{getcwdu}{}
Return a Unicode object representing the current working directory.
Availability: \UNIX, Windows.
\versionadded{2.3}
\end{funcdesc}
\begin{funcdesc}{chroot}{path} \begin{funcdesc}{chroot}{path}
Change the root directory of the current process to \var{path}. Change the root directory of the current process to \var{path}.
Availability: \UNIX. Availability: \UNIX.
...@@ -670,6 +676,9 @@ The list is in arbitrary order. It does not include the special ...@@ -670,6 +676,9 @@ The list is in arbitrary order. It does not include the special
entries \code{'.'} and \code{'..'} even if they are present in the entries \code{'.'} and \code{'..'} even if they are present in the
directory. directory.
Availability: Macintosh, \UNIX, Windows. Availability: Macintosh, \UNIX, Windows.
\versionadded[On Windows NT/2k/XP, if \var{path} is a Unicode object,
the result will be a list of Unicode objects.]{2.3}
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{lstat}{path} \begin{funcdesc}{lstat}{path}
......
...@@ -66,6 +66,8 @@ Type/class unification and new-style classes ...@@ -66,6 +66,8 @@ Type/class unification and new-style classes
Core and builtins Core and builtins
----------------- -----------------
- Unicode file name processing for Windows (PEP 277) is implemented.
- Codec error handling callbacks (PEP 293) are implemented. - Codec error handling callbacks (PEP 293) are implemented.
Error handling in unicode.encode or str.decode can now be customized. Error handling in unicode.encode or str.decode can now be customized.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment