summaryrefslogtreecommitdiffstats
path: root/cython/plist.pxd
diff options
context:
space:
mode:
Diffstat (limited to 'cython/plist.pxd')
-rw-r--r--cython/plist.pxd4
1 files changed, 2 insertions, 2 deletions
diff --git a/cython/plist.pxd b/cython/plist.pxd
index 81a272e..a31419d 100644
--- a/cython/plist.pxd
+++ b/cython/plist.pxd
@@ -13,7 +13,7 @@ cdef class Node:
cdef class Bool(Node):
cpdef set_value(self, object value)
- cpdef bool get_value(self)
+ cpdef bint get_value(self)
cdef class Integer(Node):
cpdef set_value(self, object value)
@@ -40,7 +40,7 @@ cdef class Dict(Node):
cdef void _init(self)
cpdef set_value(self, dict value)
cpdef dict get_value(self)
- cpdef bool has_key(self, key)
+ cpdef bint has_key(self, key)
cpdef object get(self, key, default=*)
cpdef list keys(self)
cpdef list items(self)