commit | 49a69e4d48d68a36325ba9098e1962e8c2195339 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Tue May 01 09:38:34 2012 -0400 |
committer | Benjamin Peterson <benjamin@python.org> | Tue May 01 09:38:34 2012 -0400 |
tree | e46dc4cc1bd7d5584240a8b7a4f37e6cd4814e9f | |
parent | d099b56be77c782b969ccf5912ab01a3b313c759 [diff] [blame] |
strip is_ prefixes on clock_info fields
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 @@ /* 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;