]> granicus.if.org Git - python/commitdiff
Fix trailing whitespaces in C files. (#4130)
authorSerhiy Storchaka <storchaka@gmail.com>
Thu, 26 Oct 2017 13:59:40 +0000 (16:59 +0300)
committerGitHub <noreply@github.com>
Thu, 26 Oct 2017 13:59:40 +0000 (16:59 +0300)
Include/pystate.h
Include/pytime.h
Modules/overlapped.c
Python/pystate.c

index 0821238a0acc0925d3876123810e41c953dd23a6..93815850f3bea17445e28bedbc7a396cf5cf6a16 100644 (file)
@@ -125,8 +125,8 @@ typedef struct _ts PyThreadState;
 #else
 
 typedef struct _err_stackitem {
-    /* This struct represents an entry on the exception stack, which is a 
-     * per-coroutine state. (Coroutine in the computer science sense, 
+    /* This struct represents an entry on the exception stack, which is a
+     * per-coroutine state. (Coroutine in the computer science sense,
      * including the thread and generators).
      * This ensures that the exception state is not impacted by "yields"
      * from an except handler.
index 9ec9b03f19e9c320950897c57a46278bae1c049a..9f489180ffff74fe4f1beca89cba03373fb7e329 100644 (file)
@@ -30,14 +30,14 @@ typedef enum {
     /* Round to nearest with ties going to nearest even integer.
        For example, used to round from a Python float. */
     _PyTime_ROUND_HALF_EVEN=2,
-    /* Round away from zero 
+    /* Round away from zero
        For example, used for timeout. _PyTime_ROUND_CEILING rounds
        -1e-9 to 0 milliseconds which causes bpo-31786 issue.
        _PyTime_ROUND_UP rounds -1e-9 to -1 millisecond which keeps
        the timeout sign as expected. select.poll(timeout) must block
        for negative values." */
     _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. */
     _PyTime_ROUND_TIMEOUT = _PyTime_ROUND_UP
 } _PyTime_round_t;
index 9355ce60f4dcf4d68153686afc0c6b7500882524..e66e856684054c839ac2460343a3697fc1cd2715 100644 (file)
@@ -804,7 +804,7 @@ do_WSARecv(OverlappedObject *self, HANDLE handle,
     WSABUF wsabuf;
     int ret;
     DWORD err;
-    
+
     wsabuf.buf = bufstart;
     wsabuf.len = buflen;
 
index 82ebf4da7db7642d1aa416e70e02486fc5abb893..55ff64951b0b7eb66339aa1fcf4545b90d0647ad 100644 (file)
@@ -450,7 +450,7 @@ PyThreadState_Clear(PyThreadState *tstate)
     Py_CLEAR(tstate->exc_state.exc_type);
     Py_CLEAR(tstate->exc_state.exc_value);
     Py_CLEAR(tstate->exc_state.exc_traceback);
-    
+
     /* The stack of exception states should contain just this thread. */
     assert(tstate->exc_info->previous_item == NULL);
     if (Py_VerboseFlag && tstate->exc_info != &tstate->exc_state) {