diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-10-26 17:00:13 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-26 17:00:13 +0300 |
commit | d94ef8fe94ed192a24a71117c07e6c7b60a8ac6c (patch) | |
tree | aa3021843d428a6ea25179816ed9048a4c13bd0d /Include/pytime.h | |
parent | 2b5cbbb13c6c9138d04c3ca4eb7431f8c65d8e65 (diff) | |
download | cpython-git-d94ef8fe94ed192a24a71117c07e6c7b60a8ac6c.tar.gz |
Fix trailing whitespaces in C and Python files. (#4131)
Diffstat (limited to 'Include/pytime.h')
-rw-r--r-- | Include/pytime.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pytime.h b/Include/pytime.h index 9e1f304fd4..158c460aee 100644 --- a/Include/pytime.h +++ b/Include/pytime.h @@ -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; |