From 7be52ea1769dd6e4f8e747cce8d5000549c6dab3 Mon Sep 17 00:00:00 2001 From: Andrew Udvare Date: Sun, 30 Mar 2014 23:22:09 -0700 Subject: cython: Implement load()/loads() to match up with plistlib (Python 3.4) --- cython/plist.pxd | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cython/plist.pxd') diff --git a/cython/plist.pxd b/cython/plist.pxd index ee8a65e..99dcca5 100644 --- a/cython/plist.pxd +++ b/cython/plist.pxd @@ -69,5 +69,8 @@ cdef class Array(Node): cpdef object from_xml(xml) cpdef object from_bin(bytes bin) +cpdef object load(fp, fmt=*, use_builtin_types=*, dict_type=*) +cpdef object loads(data, fmt=*, use_builtin_types=*, dict_type=*) + cdef object plist_t_to_node(plist_t c_plist, bint managed=*) cdef plist_t native_to_plist_t(object native) -- cgit v1.1-32-gdbae