diff options
Diffstat (limited to 'cython/plist.pxd')
| -rw-r--r-- | cython/plist.pxd | 8 |
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 | ||
| 26 | cdef class String(Node): | 26 | cdef 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 | ||
| 30 | cdef class Date(Node): | 30 | cdef 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 | ||
| 34 | cdef class Data(Node): | 34 | cdef 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 | ||
| 38 | cdef class Dict(Node): | 38 | cdef 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 | ||
| 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) |
