diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-05-17 02:52:09 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2009-05-17 02:52:09 (GMT) |
commit | b24bb27d2279129612ada536984503d771544d05 (patch) | |
tree | ec17a58ff0f282f2305140ae393ae81879c2875d /Objects | |
parent | 0c3b4c6e70f373044b40cbc381be52e9cce968ac (diff) | |
download | cpython-b24bb27d2279129612ada536984503d771544d05.zip cpython-b24bb27d2279129612ada536984503d771544d05.tar.gz cpython-b24bb27d2279129612ada536984503d771544d05.tar.bz2 |
Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/fileobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/fileobject.c b/Objects/fileobject.c index 77724d4..ff30745 100644 --- a/Objects/fileobject.c +++ b/Objects/fileobject.c @@ -2254,7 +2254,7 @@ file_init(PyObject *self, PyObject *args, PyObject *kwds) Py_DECREF(closeresult); } -#ifdef Py_WIN_WIDE_FILENAMES +#ifdef MS_WINDOWS if (GetVersion() < 0x80000000) { /* On NT, so wide API available */ PyObject *po; if (PyArg_ParseTupleAndKeywords(args, kwds, "U|si:file", |