summaryrefslogtreecommitdiffstats
path: root/cython/plist.pxd
diff options
context:
space:
mode:
authorGravatar Bryan Forbes2011-09-26 17:18:01 +0200
committerGravatar Nikias Bassen2011-09-26 17:18:01 +0200
commitb1ad30f5bf9c5067d1bdb5d7a5f9e62e9db5a137 (patch)
treeae9bd48056a07dfe9c0477e324c322bc94a30519 /cython/plist.pxd
parentbf1dcaecc3e7c4a123059ff5347bc5180835dbad (diff)
downloadlibplist-b1ad30f5bf9c5067d1bdb5d7a5f9e62e9db5a137.tar.gz
libplist-b1ad30f5bf9c5067d1bdb5d7a5f9e62e9db5a137.tar.bz2
More qualifiers.
Diffstat (limited to 'cython/plist.pxd')
-rw-r--r--cython/plist.pxd8
1 files changed, 4 insertions, 4 deletions
diff --git a/cython/plist.pxd b/cython/plist.pxd
index 7cff51c..81a272e 100644
--- a/cython/plist.pxd
+++ b/cython/plist.pxd
@@ -24,15 +24,15 @@ cdef class Real(Node):
24 cpdef float get_value(self) 24 cpdef float get_value(self)
25 25
26cdef class String(Node): 26cdef class String(Node):
27 cpdef set_value(self, unicode value) 27 cpdef set_value(self, object value)
28 cpdef unicode get_value(self) 28 cpdef unicode get_value(self)
29 29
30cdef class Date(Node): 30cdef class Date(Node):
31 cpdef set_value(self, value) 31 cpdef set_value(self, object value)
32 cpdef object get_value(self) 32 cpdef object get_value(self)
33 33
34cdef class Data(Node): 34cdef class Data(Node):
35 cpdef set_value(self, bytes value) 35 cpdef set_value(self, object value)
36 cpdef bytes get_value(self) 36 cpdef bytes get_value(self)
37 37
38cdef class Dict(Node): 38cdef class Dict(Node):
@@ -54,7 +54,7 @@ cdef class Array(Node):
54 cdef void _init(self) 54 cdef void _init(self)
55 cpdef set_value(self, value) 55 cpdef set_value(self, value)
56 cpdef list get_value(self) 56 cpdef list get_value(self)
57 cpdef append(self, item) 57 cpdef append(self, object item)
58 58
59cpdef object from_xml(xml) 59cpdef object from_xml(xml)
60cpdef object from_bin(bytes bin) 60cpdef object from_bin(bytes bin)