Commit 3291d85a authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #26671: Fixed #ifdef indentation.

parent aaf553ba
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment