Commit bdf4298a authored by Serhiy Storchaka's avatar Serhiy Storchaka Committed by GitHub

Fix trailing whitespaces in C files. (#4130)

parent 56d1f5ca
...@@ -125,8 +125,8 @@ typedef struct _ts PyThreadState; ...@@ -125,8 +125,8 @@ typedef struct _ts PyThreadState;
#else #else
typedef struct _err_stackitem { typedef struct _err_stackitem {
/* This struct represents an entry on the exception stack, which is a /* This struct represents an entry on the exception stack, which is a
* per-coroutine state. (Coroutine in the computer science sense, * per-coroutine state. (Coroutine in the computer science sense,
* including the thread and generators). * including the thread and generators).
* This ensures that the exception state is not impacted by "yields" * This ensures that the exception state is not impacted by "yields"
* from an except handler. * from an except handler.
......
...@@ -30,14 +30,14 @@ typedef enum { ...@@ -30,14 +30,14 @@ typedef enum {
/* Round to nearest with ties going to nearest even integer. /* Round to nearest with ties going to nearest even integer.
For example, used to round from a Python float. */ For example, used to round from a Python float. */
_PyTime_ROUND_HALF_EVEN=2, _PyTime_ROUND_HALF_EVEN=2,
/* Round away from zero /* Round away from zero
For example, used for timeout. _PyTime_ROUND_CEILING rounds For example, used for timeout. _PyTime_ROUND_CEILING rounds
-1e-9 to 0 milliseconds which causes bpo-31786 issue. -1e-9 to 0 milliseconds which causes bpo-31786 issue.
_PyTime_ROUND_UP rounds -1e-9 to -1 millisecond which keeps _PyTime_ROUND_UP rounds -1e-9 to -1 millisecond which keeps
the timeout sign as expected. select.poll(timeout) must block the timeout sign as expected. select.poll(timeout) must block
for negative values." */ for negative values." */
_PyTime_ROUND_UP=3, _PyTime_ROUND_UP=3,
/* _PyTime_ROUND_TIMEOUT (an alias for _PyTime_ROUND_UP) should be /* _PyTime_ROUND_TIMEOUT (an alias for _PyTime_ROUND_UP) should be
used for timeouts. */ used for timeouts. */
_PyTime_ROUND_TIMEOUT = _PyTime_ROUND_UP _PyTime_ROUND_TIMEOUT = _PyTime_ROUND_UP
} _PyTime_round_t; } _PyTime_round_t;
......
...@@ -804,7 +804,7 @@ do_WSARecv(OverlappedObject *self, HANDLE handle, ...@@ -804,7 +804,7 @@ do_WSARecv(OverlappedObject *self, HANDLE handle,
WSABUF wsabuf; WSABUF wsabuf;
int ret; int ret;
DWORD err; DWORD err;
wsabuf.buf = bufstart; wsabuf.buf = bufstart;
wsabuf.len = buflen; wsabuf.len = buflen;
......
...@@ -450,7 +450,7 @@ PyThreadState_Clear(PyThreadState *tstate) ...@@ -450,7 +450,7 @@ PyThreadState_Clear(PyThreadState *tstate)
Py_CLEAR(tstate->exc_state.exc_type); Py_CLEAR(tstate->exc_state.exc_type);
Py_CLEAR(tstate->exc_state.exc_value); Py_CLEAR(tstate->exc_state.exc_value);
Py_CLEAR(tstate->exc_state.exc_traceback); Py_CLEAR(tstate->exc_state.exc_traceback);
/* The stack of exception states should contain just this thread. */ /* The stack of exception states should contain just this thread. */
assert(tstate->exc_info->previous_item == NULL); assert(tstate->exc_info->previous_item == NULL);
if (Py_VerboseFlag && tstate->exc_info != &tstate->exc_state) { if (Py_VerboseFlag && tstate->exc_info != &tstate->exc_state) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment