Issue #26536: Use spaces instead of tabs

This commit is contained in:
Berker Peksag 2016-06-18 16:43:25 +03:00
parent ce4271a3e5
commit 3583c3bd1d
1 changed files with 4 additions and 4 deletions

View File

@ -7288,14 +7288,14 @@ PyInit__socket(void)
{
DWORD codes[] = {SIO_RCVALL, SIO_KEEPALIVE_VALS,
#if defined(SIO_LOOPBACK_FAST_PATH)
SIO_LOOPBACK_FAST_PATH
SIO_LOOPBACK_FAST_PATH
#endif
};
};
const char *names[] = {"SIO_RCVALL", "SIO_KEEPALIVE_VALS",
#if defined(SIO_LOOPBACK_FAST_PATH)
"SIO_LOOPBACK_FAST_PATH"
"SIO_LOOPBACK_FAST_PATH"
#endif
};
};
int i;
for(i = 0; i<Py_ARRAY_LENGTH(codes); ++i) {
PyObject *tmp;