mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #26536: Use spaces instead of tabs
This commit is contained in:
parent
ce4271a3e5
commit
3583c3bd1d
1 changed files with 4 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue