mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +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,
|
DWORD codes[] = {SIO_RCVALL, SIO_KEEPALIVE_VALS,
|
||||||
#if defined(SIO_LOOPBACK_FAST_PATH)
|
#if defined(SIO_LOOPBACK_FAST_PATH)
|
||||||
SIO_LOOPBACK_FAST_PATH
|
SIO_LOOPBACK_FAST_PATH
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
const char *names[] = {"SIO_RCVALL", "SIO_KEEPALIVE_VALS",
|
const char *names[] = {"SIO_RCVALL", "SIO_KEEPALIVE_VALS",
|
||||||
#if defined(SIO_LOOPBACK_FAST_PATH)
|
#if defined(SIO_LOOPBACK_FAST_PATH)
|
||||||
"SIO_LOOPBACK_FAST_PATH"
|
"SIO_LOOPBACK_FAST_PATH"
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
int i;
|
int i;
|
||||||
for(i = 0; i<Py_ARRAY_LENGTH(codes); ++i) {
|
for(i = 0; i<Py_ARRAY_LENGTH(codes); ++i) {
|
||||||
PyObject *tmp;
|
PyObject *tmp;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue