From 6c684cc61a1189cc72d8609d49f3eb7cd954abab Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 8 Aug 2019 00:14:11 +0200 Subject: cython: Fix compilation --- cython/plist.pyx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cython/plist.pyx b/cython/plist.pyx index 3c6389c..d4f8d68 100644 --- a/cython/plist.pyx +++ b/cython/plist.pyx @@ -863,6 +863,8 @@ cpdef object load(fp, fmt=None, use_builtin_types=True, dict_type=dict): is_binary = fp.read(6) == 'bplist' fp.seek(0) + cdef object cb = None + if not fmt: if is_binary: if 'b' not in fp.mode: @@ -888,6 +890,8 @@ cpdef object load(fp, fmt=None, use_builtin_types=True, dict_type=dict): cpdef object loads(data, fmt=None, use_builtin_types=True, dict_type=dict): is_binary = data[0:6] == 'bplist' + cdef object cb = None + if fmt is not None: if fmt not in (FMT_XML, FMT_BINARY): raise ValueError('Format must be constant FMT_XML or FMT_BINARY') -- cgit v1.1-32-gdbae