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:
13 13
14cdef class Bool(Node): 14cdef class Bool(Node):
15 cpdef set_value(self, object value) 15 cpdef set_value(self, object value)
16 cpdef bool get_value(self) 16 cpdef bint get_value(self)
17 17
18cdef class Integer(Node): 18cdef class Integer(Node):
19 cpdef set_value(self, object value) 19 cpdef set_value(self, object value)
@@ -40,7 +40,7 @@ cdef class Dict(Node):
40 cdef void _init(self) 40 cdef void _init(self)
41 cpdef set_value(self, dict value) 41 cpdef set_value(self, dict value)
42 cpdef dict get_value(self) 42 cpdef dict get_value(self)
43 cpdef bool has_key(self, key) 43 cpdef bint has_key(self, key)
44 cpdef object get(self, key, default=*) 44 cpdef object get(self, key, default=*)
45 cpdef list keys(self) 45 cpdef list keys(self)
46 cpdef list items(self) 46 cpdef list items(self)