From fd5019a7b2d64459ad70d41a5ab6edd4470809fb Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Thu, 29 Sep 2022 00:38:47 +0200 Subject: [PATCH] cpdef variables -> cdef warning: src/borg/item.pyx:199:10: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables warning: src/borg/item.pyx:200:10: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables warning: src/borg/item.pyx:202:10: cpdef variables will not be supported in Cython 3; currently they are no different from cdef variables --- src/borg/item.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/borg/item.pyx b/src/borg/item.pyx index 54df3490d..da9b3c044 100644 --- a/src/borg/item.pyx +++ b/src/borg/item.pyx @@ -196,10 +196,10 @@ cdef class PropDict: cdef class PropDictProperty: """return a property that deals with self._dict[key] of PropDict""" - cpdef readonly str key - cpdef readonly object value_type + cdef readonly str key + cdef readonly object value_type cdef str value_type_name - cpdef readonly str __doc__ + cdef readonly str __doc__ cdef object encode cdef object decode cdef str type_error_msg