[Python-3000-checkins] r67527 - python/branches/py3k/Doc/whatsnew/3.0.rst

georg.brandl python-3000-checkins at python.org
Thu Dec 4 19:21:47 CET 2008


Author: georg.brandl
Date: Thu Dec  4 19:21:46 2008
New Revision: 67527

Log:
#4521: fix getcwdu() vs getcwdb().


Modified:
   python/branches/py3k/Doc/whatsnew/3.0.rst

Modified: python/branches/py3k/Doc/whatsnew/3.0.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.0.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.0.rst	Thu Dec  4 19:21:46 2008
@@ -303,7 +303,7 @@
   as well as strings, and a few APIs have a way to ask for a
   :class:`bytes` return value.  Thus, :func:`os.listdir` returns a
   list of :class:`bytes` instances if the argument is a :class:`bytes`
-  instance, and :func:`os.getcwdu` returns the current working
+  instance, and :func:`os.getcwdb` returns the current working
   directory as a :class:`bytes` instance.  Note that when
   :func:`os.listdir` returns a list of strings, filenames that
   cannot be decoded properly are omitted rather than raising


More information about the Python-3000-checkins mailing list