diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-05-01 13:38:34 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-05-01 13:38:34 (GMT) |
commit | 49a69e4d48d68a36325ba9098e1962e8c2195339 (patch) | |
tree | e46dc4cc1bd7d5584240a8b7a4f37e6cd4814e9f /Include | |
parent | d099b56be77c782b969ccf5912ab01a3b313c759 (diff) | |
download | cpython-49a69e4d48d68a36325ba9098e1962e8c2195339.zip cpython-49a69e4d48d68a36325ba9098e1962e8c2195339.tar.gz cpython-49a69e4d48d68a36325ba9098e1962e8c2195339.tar.bz2 |
strip is_ prefixes on clock_info fields
Diffstat (limited to 'Include')
-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 a0cedb2..7442c6f 100644 --- a/Include/pytime.h +++ b/Include/pytime.h @@ -25,8 +25,8 @@ typedef struct { /* Structure used by time.get_clock_info() */ typedef struct { const char *implementation; - int is_monotonic; - int is_adjusted; + int monotonic; + int adjusted; double resolution; } _Py_clock_info_t; |