diff options
author | Bryan Forbes | 2011-09-26 17:18:01 +0200 |
---|---|---|
committer | Nikias Bassen | 2011-09-26 17:18:01 +0200 |
commit | b1ad30f5bf9c5067d1bdb5d7a5f9e62e9db5a137 (patch) | |
tree | ae9bd48056a07dfe9c0477e324c322bc94a30519 /cython/plist.pxd | |
parent | bf1dcaecc3e7c4a123059ff5347bc5180835dbad (diff) | |
download | libplist-b1ad30f5bf9c5067d1bdb5d7a5f9e62e9db5a137.tar.gz libplist-b1ad30f5bf9c5067d1bdb5d7a5f9e62e9db5a137.tar.bz2 |
More qualifiers.
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): cpdef float get_value(self) cdef class String(Node): - cpdef set_value(self, unicode value) + cpdef set_value(self, object value) cpdef unicode get_value(self) cdef class Date(Node): - cpdef set_value(self, value) + cpdef set_value(self, object value) cpdef object get_value(self) cdef class Data(Node): - cpdef set_value(self, bytes value) + cpdef set_value(self, object value) cpdef bytes get_value(self) cdef class Dict(Node): @@ -54,7 +54,7 @@ cdef class Array(Node): cdef void _init(self) cpdef set_value(self, value) cpdef list get_value(self) - cpdef append(self, item) + cpdef append(self, object item) cpdef object from_xml(xml) cpdef object from_bin(bytes bin) |