Issue #26671: Fixed #ifdef indentation.

This commit is contained in:
Serhiy Storchaka 2016-04-06 23:02:46 +03:00
parent aaf553bac4
commit 3291d85a2f
1 changed files with 2 additions and 2 deletions

View File

@ -884,11 +884,11 @@ path_converter(PyObject *o, void *p)
#endif
}
else if (PyObject_CheckBuffer(o)) {
# ifdef MS_WINDOWS
#ifdef MS_WINDOWS
if (win32_warn_bytes_api()) {
return 0;
}
# endif
#endif
bytes = PyBytes_FromObject(o);
if (!bytes) {
return 0;