From bf1dcaecc3e7c4a123059ff5347bc5180835dbad Mon Sep 17 00:00:00 2001 From: Bryan Forbes Date: Mon, 26 Sep 2011 17:17:22 +0200 Subject: Changed bool to bint in Cython functions. Added some more type qualifiers. --- cython/plist.pxd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cython/plist.pxd') diff --git a/cython/plist.pxd b/cython/plist.pxd index 6a96817..7cff51c 100644 --- a/cython/plist.pxd +++ b/cython/plist.pxd @@ -5,7 +5,7 @@ cdef extern from "plist/plist.h": cdef class Node: cdef plist_t _c_node - cdef bool _c_managed + cdef bint _c_managed cpdef object __deepcopy__(self, memo=*) cpdef unicode to_xml(self) cpdef bytes to_bin(self) @@ -59,5 +59,5 @@ cdef class Array(Node): cpdef object from_xml(xml) cpdef object from_bin(bytes bin) -cdef object plist_t_to_node(plist_t c_plist, bool managed=*) +cdef object plist_t_to_node(plist_t c_plist, bint managed=*) cdef plist_t native_to_plist_t(object native) -- cgit v1.1-32-gdbae