summaryrefslogtreecommitdiff
path: root/Python/pytime.c
diff options
context:
space:
mode:
authorluzpaz <luzpaz@users.noreply.github.com>2017-11-05 07:37:50 -0600
committerSerhiy Storchaka <storchaka@gmail.com>2017-11-05 15:37:50 +0200
commita5293b4ff2c1b5446947b4986f98ecf5d52432d4 (patch)
treebe2f5e686be63814c02eabc61a899631ec7a08ac /Python/pytime.c
parentcf296537f164abeacd83011239881f75f290ed31 (diff)
downloadcpython-git-a5293b4ff2c1b5446947b4986f98ecf5d52432d4.tar.gz
Fix miscellaneous typos (#4275)
Diffstat (limited to 'Python/pytime.c')
-rw-r--r--Python/pytime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pytime.c b/Python/pytime.c
index 5a98d1d329..0e94131741 100644
--- a/Python/pytime.c
+++ b/Python/pytime.c
@@ -817,7 +817,7 @@ pymonotonic(_PyTime_t *tp, _Py_clock_info_t *info, int raise)
}
/* Check that timebase.numer and timebase.denom can be casted to
- _PyTime_t. In pratice, timebase uses uint32_t, so casting cannot
+ _PyTime_t. In practice, timebase uses uint32_t, so casting cannot
overflow. At the end, only make sure that the type is uint32_t
(_PyTime_t is 64-bit long). */
assert(sizeof(timebase.numer) < sizeof(_PyTime_t));