]> granicus.if.org Git - python/commitdiff
Document patch #594001.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 5 Oct 2002 09:46:48 +0000 (09:46 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 5 Oct 2002 09:46:48 +0000 (09:46 +0000)
Doc/lib/libos.tex
Misc/NEWS

index 5cbeeebf75176feb003cf386b8ec6d1f9517780c..afbea54ca6d091a2a0db402683ce999cb70aa524 100644 (file)
@@ -635,6 +635,12 @@ Return a string representing the current working directory.
 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 @@ The list is in arbitrary order.  It does not include the special
 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 da2c81c7b34b7218080f4c0834b3a41341fcbe0e..dbd718b8bd47162fadbf36d363d8d95293859d55 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,8 @@ Type/class unification and new-style classes
 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.