os.listdir() may now return unicode strings on platforms that set
Py_FileSystemDefaultEncoding.
Library
-------
-TBD
+- os.listdir() now returns Unicode strings on platforms that set
+ Py_FileSystemDefaultEncoding, for file names that are not representable
+ in ASCII. (This currently only affects MacOS X; on Windows versions
+ with wide file name support os.listdir() already returned Unicode
+ strings.)
Tools/Demos
-----------
Mac
---
+- os.listdir() now may return Unicode strings on MacOS X. See the general
+ news item under "Library".
+
- A new method MacOS.WMAvailable() returns true if it is safe to access
the window manager, false otherwise.
d = NULL;
break;
}
+#ifdef Py_USING_UNICODE
+ if (Py_FileSystemDefaultEncoding != NULL) {
+ PyObject *w;
+
+ w = PyUnicode_FromEncodedObject(v,
+ Py_FileSystemDefaultEncoding,
+ "strict");
+ Py_DECREF(v);
+ v = w;
+ if (v == NULL) {
+ Py_DECREF(d);
+ d = NULL;
+ break;
+ }
+ /* attempt to convert to ASCII */
+ w = PyUnicode_AsASCIIString(v);
+ if (w != NULL) {
+ Py_DECREF(v);
+ v = w;
+ }
+ else
+ PyErr_Clear();
+ }
+#endif
if (PyList_Append(d, v) != 0) {
Py_DECREF(v);
Py_DECREF(d);