diff options
| author | 2011-09-26 17:17:22 +0200 | |
|---|---|---|
| committer | 2011-09-26 17:17:22 +0200 | |
| commit | bf1dcaecc3e7c4a123059ff5347bc5180835dbad (patch) | |
| tree | b8d539cdba59e6938743758b20593a1511cf522e /cython/plist.pxd | |
| parent | 89900d6decbfe805720a9cbce65655ec31086f94 (diff) | |
| download | libplist-bf1dcaecc3e7c4a123059ff5347bc5180835dbad.tar.gz libplist-bf1dcaecc3e7c4a123059ff5347bc5180835dbad.tar.bz2 | |
Changed bool to bint in Cython functions. Added some more type qualifiers.
Diffstat (limited to 'cython/plist.pxd')
| -rw-r--r-- | cython/plist.pxd | 4 |
1 files changed, 2 insertions, 2 deletions
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": | |||
| 5 | 5 | ||
| 6 | cdef class Node: | 6 | cdef class Node: |
| 7 | cdef plist_t _c_node | 7 | cdef plist_t _c_node |
| 8 | cdef bool _c_managed | 8 | cdef bint _c_managed |
| 9 | cpdef object __deepcopy__(self, memo=*) | 9 | cpdef object __deepcopy__(self, memo=*) |
| 10 | cpdef unicode to_xml(self) | 10 | cpdef unicode to_xml(self) |
| 11 | cpdef bytes to_bin(self) | 11 | cpdef bytes to_bin(self) |
| @@ -59,5 +59,5 @@ cdef class Array(Node): | |||
| 59 | cpdef object from_xml(xml) | 59 | cpdef object from_xml(xml) |
| 60 | cpdef object from_bin(bytes bin) | 60 | cpdef object from_bin(bytes bin) |
| 61 | 61 | ||
| 62 | cdef object plist_t_to_node(plist_t c_plist, bool managed=*) | 62 | cdef object plist_t_to_node(plist_t c_plist, bint managed=*) |
| 63 | cdef plist_t native_to_plist_t(object native) | 63 | cdef plist_t native_to_plist_t(object native) |
