feat: improve cdef types for marshaller (#164)

This commit is contained in:
J. Nick Koston 2022-11-14 14:51:04 -06:00 committed by GitHub
parent 97dfb968bb
commit 9fb4440b80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,8 @@
import cython
from ..signature cimport SignatureTree
cdef object PACK_UINT32
@ -13,9 +15,9 @@ cdef get_signature_tree
cdef class Marshaller:
cdef object signature_tree
cdef SignatureTree signature_tree
cdef bytearray _buf
cdef object body
cdef cython.list body
cdef _buffer(self)