feat: small performance improvement constructing outgoing questions by bdraco · Pull Request #1340 · python-zeroconf/python-zeroconf

Expand Up @@ -127,16 +127,16 @@ cdef class DNSOutgoing: ) cpdef packets(self)
cpdef add_question_or_all_cache(self, DNSCache cache, object now, str name, object type_, object class_) cpdef add_question_or_all_cache(self, DNSCache cache, double now, str name, object type_, object class_)
cpdef add_question_or_one_cache(self, DNSCache cache, object now, str name, object type_, object class_) cpdef add_question_or_one_cache(self, DNSCache cache, double now, str name, object type_, object class_)
cpdef add_question(self, DNSQuestion question)
cpdef add_answer(self, DNSIncoming inp, DNSRecord record)
@cython.locals(now_double=double) cpdef add_answer_at_time(self, DNSRecord record, object now) cpdef add_answer_at_time(self, DNSRecord record, double now)
cpdef add_authorative_answer(self, DNSPointer record)
Expand Down