Index: Doc/lib/libos.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v retrieving revision 1.96 diff -u -r1.96 libos.tex --- Doc/lib/libos.tex 9 Sep 2002 16:17:45 -0000 1.96 +++ Doc/lib/libos.tex 1 Oct 2002 17:39:06 -0000 @@ -635,6 +635,12 @@ Availability: Macintosh, \UNIX, Windows. \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} Change the root directory of the current process to \var{path}. Availability: \UNIX. @@ -670,6 +676,9 @@ entries \code{'.'} and \code{'..'} even if they are present in the directory. 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} \begin{funcdesc}{lstat}{path} Index: Misc/NEWS =================================================================== RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v retrieving revision 1.490 diff -u -r1.490 NEWS --- Misc/NEWS 30 Sep 2002 15:23:01 -0000 1.490 +++ Misc/NEWS 1 Oct 2002 17:39:07 -0000 @@ -66,6 +66,8 @@ Core and builtins ----------------- +- Unicode file name processing for Windows (PEP 277) is implemented. + - Codec error handling callbacks (PEP 293) are implemented. Error handling in unicode.encode or str.decode can now be customized.