comparison pytouhou/utils/bitstream.pxd @ 606:3c2f96f1d715

Fix compilation under Cython 0.22, by making the pyx and the pxd declarations’ except clause similar.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 26 Nov 2014 13:36:38 +0100
parents 1b532e7dd521
children
comparison
equal deleted inserted replaced
605:d6ead6f0ba80 606:3c2f96f1d715
1 cdef class BitStream: 1 cdef class BitStream:
2 cdef public object io 2 cdef public object io
3 cdef unsigned int bits 3 cdef unsigned int bits
4 cdef unsigned char byte 4 cdef unsigned char byte
5 5
6 cdef bint read_bit(self) except? -1 6 cdef bint read_bit(self) except -1
7 cpdef unsigned int read(self, unsigned int nb_bits) except? 4242 7 cpdef unsigned int read(self, unsigned int nb_bits) except? 4242
8 cpdef write_bit(self, bint bit) 8 cpdef write_bit(self, bint bit)
9 cpdef write(self, unsigned int bits, unsigned int nb_bits) 9 cpdef write(self, unsigned int bits, unsigned int nb_bits)
10 cpdef flush(self) 10 cpdef flush(self)