mirror of https://github.com/python/cpython
Issue #26536: Use spaces instead of tabs
This commit is contained in:
parent
ce4271a3e5
commit
3583c3bd1d
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue