mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Left-aligned preprocessor directives and changed C++ comments to C
comments.
This commit is contained in:
parent
c5a0f532e7
commit
32c575da0a
1 changed files with 9 additions and 9 deletions
|
@ -939,11 +939,11 @@ BUILD_FUNC_DEF_2(PySocketSock_recvfrom,PySocketSockObject *,s, PyObject *,args)
|
||||||
Py_BEGIN_ALLOW_THREADS
|
Py_BEGIN_ALLOW_THREADS
|
||||||
n = recvfrom(s->sock_fd, PyString_AsString(buf), len, flags,
|
n = recvfrom(s->sock_fd, PyString_AsString(buf), len, flags,
|
||||||
#ifndef MS_WINDOWS
|
#ifndef MS_WINDOWS
|
||||||
#if defined(PYOS_OS2)
|
#if defined(PYOS_OS2)
|
||||||
(struct sockaddr *)addrbuf, &addrlen
|
(struct sockaddr *)addrbuf, &addrlen
|
||||||
#else
|
#else
|
||||||
(ANY *)addrbuf, &addrlen
|
(ANY *)addrbuf, &addrlen
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
(struct sockaddr *)addrbuf, &addrlen
|
(struct sockaddr *)addrbuf, &addrlen
|
||||||
#endif
|
#endif
|
||||||
|
@ -1465,14 +1465,14 @@ OS2init()
|
||||||
int rc = sock_init();
|
int rc = sock_init();
|
||||||
|
|
||||||
if (rc == 0) {
|
if (rc == 0) {
|
||||||
atexit(OS2cleanup);
|
atexit(OS2cleanup);
|
||||||
return 1; // Indicate Success
|
return 1; /* Indicate Success */
|
||||||
}
|
}
|
||||||
|
|
||||||
sprintf(reason, "OS/2 TCP/IP Error# %d", sock_errno());
|
sprintf(reason, "OS/2 TCP/IP Error# %d", sock_errno());
|
||||||
PyErr_SetString(PyExc_ImportError, reason);
|
PyErr_SetString(PyExc_ImportError, reason);
|
||||||
|
|
||||||
return 0; // Indicate Failure
|
return 0; /* Indicate Failure */
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* PYOS_OS2 */
|
#endif /* PYOS_OS2 */
|
||||||
|
@ -1510,13 +1510,13 @@ initsocket()
|
||||||
return;
|
return;
|
||||||
m = Py_InitModule("_socket", PySocket_methods);
|
m = Py_InitModule("_socket", PySocket_methods);
|
||||||
#else
|
#else
|
||||||
#if defined(__TOS_OS2__)
|
#if defined(__TOS_OS2__)
|
||||||
if (!OS2init())
|
if (!OS2init())
|
||||||
return;
|
return;
|
||||||
m = Py_InitModule("_socket", PySocket_methods);
|
m = Py_InitModule("_socket", PySocket_methods);
|
||||||
#else
|
#else
|
||||||
m = Py_InitModule("socket", PySocket_methods);
|
m = Py_InitModule("socket", PySocket_methods);
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
d = PyModule_GetDict(m);
|
d = PyModule_GetDict(m);
|
||||||
PySocket_Error = PyErr_NewException("socket.error", NULL, NULL);
|
PySocket_Error = PyErr_NewException("socket.error", NULL, NULL);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue