Issue #6368: Fixed unused variable warning on Unix.

This commit is contained in:
Hirokazu Yamamoto 2009-06-29 15:52:21 +00:00
parent e323e0e91a
commit 5c3dd9a1ee

View file

@ -2238,7 +2238,9 @@ file_init(PyObject *self, PyObject *args, PyObject *kwds)
char *mode = "r";
int bufsize = -1;
int wideargument = 0;
#ifdef MS_WINDOWS
PyObject *po;
#endif
assert(PyFile_Check(self));
if (foself->f_fp != NULL) {