summaryrefslogtreecommitdiff
path: root/Modules/_fileio.c
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-05-17 02:52:09 +0000
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-05-17 02:52:09 +0000
commitb24bb27d2279129612ada536984503d771544d05 (patch)
treeec17a58ff0f282f2305140ae393ae81879c2875d /Modules/_fileio.c
parent0c3b4c6e70f373044b40cbc381be52e9cce968ac (diff)
downloadcpython-git-b24bb27d2279129612ada536984503d771544d05.tar.gz
Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more.
Diffstat (limited to 'Modules/_fileio.c')
-rw-r--r--Modules/_fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_fileio.c b/Modules/_fileio.c
index 409abf6e0f..efe0855335 100644
--- a/Modules/_fileio.c
+++ b/Modules/_fileio.c
@@ -178,7 +178,7 @@ fileio_init(PyObject *oself, PyObject *args, PyObject *kwds)
else {
PyErr_Clear();
-#ifdef Py_WIN_WIDE_FILENAMES
+#ifdef MS_WINDOWS
if (GetVersion() < 0x80000000) {
/* On NT, so wide API available */
PyObject *po;