@@ -9,10 +9,10 @@ cdef class QuestionHistory:
|
9 | 9 | |
10 | 10 | cdef cython.dict _history |
11 | 11 | |
12 | | - cpdef add_question_at_time(self, DNSQuestion question, float now, cython.set known_answers) |
| 12 | + cpdef add_question_at_time(self, DNSQuestion question, double now, cython.set known_answers) |
13 | 13 | |
14 | | -@cython.locals(than=cython.double, previous_question=cython.tuple, previous_known_answers=cython.set) |
15 | | - cpdef bint suppresses(self, DNSQuestion question, cython.double now, cython.set known_answers) |
| 14 | +@cython.locals(than=double, previous_question=cython.tuple, previous_known_answers=cython.set) |
| 15 | + cpdef bint suppresses(self, DNSQuestion question, double now, cython.set known_answers) |
16 | 16 | |
17 | | -@cython.locals(than=cython.double, now_known_answers=cython.tuple) |
18 | | - cpdef async_expire(self, cython.double now) |
| 17 | +@cython.locals(than=double, now_known_answers=cython.tuple) |
| 18 | + cpdef async_expire(self, double now) |