| |
| |
| |
| |
| |
| |
|
|
|
|
|
|
|
|
| static PyObject* __Pyx_Globals(void);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| static PyObject* __Pyx_Globals(void) {
|
| return __Pyx_NewRef($moddict_cname);
|
| }
|
|
|
|
|
|
|
| static PyObject* __Pyx_PyExecGlobals(PyObject*);
|
|
|
|
|
|
|
|
|
|
|
| static PyObject* __Pyx_PyExecGlobals(PyObject* code) {
|
| return __Pyx_PyExec2(code, $moddict_cname);
|
| }
|
|
|
|
|
|
|
| static PyObject* __Pyx_PyExec3(PyObject*, PyObject*, PyObject*);
|
| static CYTHON_INLINE PyObject* __Pyx_PyExec2(PyObject*, PyObject*);
|
|
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyExec2(PyObject* o, PyObject* globals) {
|
| return __Pyx_PyExec3(o, globals, NULL);
|
| }
|
|
|
| static PyObject* __Pyx_PyExec3(PyObject* o, PyObject* globals, PyObject* locals) {
|
| PyObject* result;
|
| PyObject* s = 0;
|
| char *code = 0;
|
|
|
| if (!globals || globals == Py_None) {
|
| globals = $moddict_cname;
|
| } else if (unlikely(!PyDict_Check(globals))) {
|
| __Pyx_TypeName globals_type_name =
|
| __Pyx_PyType_GetName(Py_TYPE(globals));
|
| PyErr_Format(PyExc_TypeError,
|
| "exec() arg 2 must be a dict, not " __Pyx_FMT_TYPENAME,
|
| globals_type_name);
|
| __Pyx_DECREF_TypeName(globals_type_name);
|
| goto bad;
|
| }
|
| if (!locals || locals == Py_None) {
|
| locals = globals;
|
| }
|
|
|
| if (__Pyx_PyDict_GetItemStr(globals, PYIDENT("__builtins__")) == NULL) {
|
| if (unlikely(PyDict_SetItem(globals, PYIDENT("__builtins__"), PyEval_GetBuiltins()) < 0))
|
| goto bad;
|
| }
|
|
|
| if (PyCode_Check(o)) {
|
| if (unlikely(__Pyx_PyCode_HasFreeVars((PyCodeObject *)o))) {
|
| PyErr_SetString(PyExc_TypeError,
|
| "code object passed to exec() may not contain free variables");
|
| goto bad;
|
| }
|
| #if PY_VERSION_HEX < 0x030200B1 || (CYTHON_COMPILING_IN_PYPY && PYPY_VERSION_NUM < 0x07030400)
|
| result = PyEval_EvalCode((PyCodeObject *)o, globals, locals);
|
| #else
|
| result = PyEval_EvalCode(o, globals, locals);
|
| #endif
|
| } else {
|
| PyCompilerFlags cf;
|
| cf.cf_flags = 0;
|
| #if PY_VERSION_HEX >= 0x030800A3
|
| cf.cf_feature_version = PY_MINOR_VERSION;
|
| #endif
|
| if (PyUnicode_Check(o)) {
|
| cf.cf_flags = PyCF_SOURCE_IS_UTF8;
|
| s = PyUnicode_AsUTF8String(o);
|
| if (unlikely(!s)) goto bad;
|
| o = s;
|
| #if PY_MAJOR_VERSION >= 3
|
| } else if (unlikely(!PyBytes_Check(o))) {
|
| #else
|
| } else if (unlikely(!PyString_Check(o))) {
|
| #endif
|
| __Pyx_TypeName o_type_name = __Pyx_PyType_GetName(Py_TYPE(o));
|
| PyErr_Format(PyExc_TypeError,
|
| "exec: arg 1 must be string, bytes or code object, got " __Pyx_FMT_TYPENAME,
|
| o_type_name);
|
| __Pyx_DECREF_TypeName(o_type_name);
|
| goto bad;
|
| }
|
| #if PY_MAJOR_VERSION >= 3
|
| code = PyBytes_AS_STRING(o);
|
| #else
|
| code = PyString_AS_STRING(o);
|
| #endif
|
| if (PyEval_MergeCompilerFlags(&cf)) {
|
| result = PyRun_StringFlags(code, Py_file_input, globals, locals, &cf);
|
| } else {
|
| result = PyRun_String(code, Py_file_input, globals, locals);
|
| }
|
| Py_XDECREF(s);
|
| }
|
|
|
| return result;
|
| bad:
|
| Py_XDECREF(s);
|
| return 0;
|
| }
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject *__Pyx_GetAttr3(PyObject *, PyObject *, PyObject *);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| #if __PYX_LIMITED_VERSION_HEX < 0x030d00A1
|
| static PyObject *__Pyx_GetAttr3Default(PyObject *d) {
|
| __Pyx_PyThreadState_declare
|
| __Pyx_PyThreadState_assign
|
| if (unlikely(!__Pyx_PyErr_ExceptionMatches(PyExc_AttributeError)))
|
| return NULL;
|
| __Pyx_PyErr_Clear();
|
| Py_INCREF(d);
|
| return d;
|
| }
|
| #endif
|
|
|
| static CYTHON_INLINE PyObject *__Pyx_GetAttr3(PyObject *o, PyObject *n, PyObject *d) {
|
| PyObject *r;
|
| #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
|
| int res = PyObject_GetOptionalAttr(o, n, &r);
|
|
|
| return (res != 0) ? r : __Pyx_NewRef(d);
|
| #else
|
| #if CYTHON_USE_TYPE_SLOTS
|
| if (likely(PyString_Check(n))) {
|
| r = __Pyx_PyObject_GetAttrStrNoError(o, n);
|
| if (unlikely(!r) && likely(!PyErr_Occurred())) {
|
| r = __Pyx_NewRef(d);
|
| }
|
| return r;
|
| }
|
| #endif
|
| r = PyObject_GetAttr(o, n);
|
| return (likely(r)) ? r : __Pyx_GetAttr3Default(d);
|
| #endif
|
| }
|
|
|
|
|
|
|
| #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
|
| #define __Pyx_HasAttr(o, n) PyObject_HasAttrWithError(o, n)
|
| #else
|
| static CYTHON_INLINE int __Pyx_HasAttr(PyObject *, PyObject *);
|
| #endif
|
|
|
|
|
|
|
|
|
| #if __PYX_LIMITED_VERSION_HEX < 0x030d00A1
|
| static CYTHON_INLINE int __Pyx_HasAttr(PyObject *o, PyObject *n) {
|
| PyObject *r;
|
| if (unlikely(!__Pyx_PyBaseString_Check(n))) {
|
| PyErr_SetString(PyExc_TypeError,
|
| "hasattr(): attribute name must be string");
|
| return -1;
|
| }
|
| r = __Pyx_GetAttr(o, n);
|
| if (!r) {
|
| PyErr_Clear();
|
| return 0;
|
| } else {
|
| Py_DECREF(r);
|
| return 1;
|
| }
|
| }
|
| #endif
|
|
|
|
|
|
|
| static PyObject* __Pyx_Intern(PyObject* s);
|
|
|
|
|
|
|
|
|
| static PyObject* __Pyx_Intern(PyObject* s) {
|
| if (unlikely(!PyString_CheckExact(s))) {
|
| __Pyx_RaiseUnexpectedTypeError("str", s);
|
| return NULL;
|
| }
|
| Py_INCREF(s);
|
| #if PY_MAJOR_VERSION >= 3
|
| PyUnicode_InternInPlace(&s);
|
| #else
|
| PyString_InternInPlace(&s);
|
| #endif
|
| return s;
|
| }
|
|
|
|
|
|
|
| static CYTHON_INLINE PY_LONG_LONG __Pyx_abs_longlong(PY_LONG_LONG x) {
|
| #if defined (__cplusplus) && __cplusplus >= 201103L
|
| return std::abs(x);
|
| #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
| return llabs(x);
|
| #elif defined (_MSC_VER)
|
|
|
|
|
| return _abs64(x);
|
| #elif defined (__GNUC__)
|
|
|
| return __builtin_llabs(x);
|
| #else
|
| if (sizeof(PY_LONG_LONG) <= sizeof(Py_ssize_t))
|
| return __Pyx_sst_abs(x);
|
| return (x<0) ? -x : x;
|
| #endif
|
| }
|
|
|
|
|
|
|
|
|
| #if CYTHON_USE_PYLONG_INTERNALS
|
| static PyObject *__Pyx_PyLong_AbsNeg(PyObject *num);
|
|
|
| #define __Pyx_PyNumber_Absolute(x) \
|
| ((likely(PyLong_CheckExact(x))) ? \
|
| (likely(__Pyx_PyLong_IsNonNeg(x)) ? (Py_INCREF(x), (x)) : __Pyx_PyLong_AbsNeg(x)) : \
|
| PyNumber_Absolute(x))
|
|
|
| #else
|
| #define __Pyx_PyNumber_Absolute(x) PyNumber_Absolute(x)
|
| #endif
|
|
|
|
|
|
|
| #if CYTHON_USE_PYLONG_INTERNALS
|
| static PyObject *__Pyx_PyLong_AbsNeg(PyObject *n) {
|
| #if PY_VERSION_HEX >= 0x030C00A7
|
| if (likely(__Pyx_PyLong_IsCompact(n))) {
|
| return PyLong_FromSize_t(__Pyx_PyLong_CompactValueUnsigned(n));
|
| }
|
| #else
|
| if (likely(Py_SIZE(n) == -1)) {
|
|
|
| return PyLong_FromUnsignedLong(__Pyx_PyLong_Digits(n)[0]);
|
| }
|
| #endif
|
| #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030d0000
|
| {
|
| PyObject *copy = _PyLong_Copy((PyLongObject*)n);
|
| if (likely(copy)) {
|
| #if PY_VERSION_HEX >= 0x030C00A7
|
|
|
| ((PyLongObject*)copy)->long_value.lv_tag = ((PyLongObject*)copy)->long_value.lv_tag & ~_PyLong_SIGN_MASK;
|
| #else
|
|
|
| __Pyx_SET_SIZE(copy, -Py_SIZE(copy));
|
| #endif
|
| }
|
| return copy;
|
| }
|
| #else
|
| return PyNumber_Negative(n);
|
| #endif
|
| }
|
| #endif
|
|
|
|
|
|
|
|
|
| #define __Pyx_PyNumber_Power2(a, b) PyNumber_Power(a, b, Py_None)
|
|
|
|
|
|
|
|
|
| static CYTHON_INLINE int __Pyx_int_from_UCS4(Py_UCS4 uchar);
|
|
|
|
|
|
|
| static int __Pyx_int_from_UCS4(Py_UCS4 uchar) {
|
| int digit = Py_UNICODE_TODIGIT(uchar);
|
| if (unlikely(digit < 0)) {
|
| PyErr_Format(PyExc_ValueError,
|
| "invalid literal for int() with base 10: '%c'",
|
| (int) uchar);
|
| return -1;
|
| }
|
| return digit;
|
| }
|
|
|
|
|
|
|
|
|
| static CYTHON_INLINE double __Pyx_double_from_UCS4(Py_UCS4 uchar);
|
|
|
|
|
|
|
| static double __Pyx_double_from_UCS4(Py_UCS4 uchar) {
|
| double digit = Py_UNICODE_TONUMERIC(uchar);
|
| if (unlikely(digit < 0.0)) {
|
| PyErr_Format(PyExc_ValueError,
|
| "could not convert string to float: '%c'",
|
| (int) uchar);
|
| return -1.0;
|
| }
|
| return digit;
|
| }
|
|
|
|
|
|
|
|
|
|
|
| #if PY_MAJOR_VERSION >= 3
|
| #define __Pyx_PyObject_Ord(c) \
|
| (likely(PyUnicode_Check(c)) ? (long)__Pyx_PyUnicode_AsPy_UCS4(c) : __Pyx__PyObject_Ord(c))
|
| #else
|
| #define __Pyx_PyObject_Ord(c) __Pyx__PyObject_Ord(c)
|
| #endif
|
| static long __Pyx__PyObject_Ord(PyObject* c);
|
|
|
|
|
|
|
| static long __Pyx__PyObject_Ord(PyObject* c) {
|
| Py_ssize_t size;
|
| if (PyBytes_Check(c)) {
|
| size = PyBytes_GET_SIZE(c);
|
| if (likely(size == 1)) {
|
| return (unsigned char) PyBytes_AS_STRING(c)[0];
|
| }
|
| #if PY_MAJOR_VERSION < 3
|
| } else if (PyUnicode_Check(c)) {
|
| return (long)__Pyx_PyUnicode_AsPy_UCS4(c);
|
| #endif
|
| #if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE))
|
| } else if (PyByteArray_Check(c)) {
|
| size = PyByteArray_GET_SIZE(c);
|
| if (likely(size == 1)) {
|
| return (unsigned char) PyByteArray_AS_STRING(c)[0];
|
| }
|
| #endif
|
| } else {
|
|
|
| __Pyx_TypeName c_type_name = __Pyx_PyType_GetName(Py_TYPE(c));
|
| PyErr_Format(PyExc_TypeError,
|
| "ord() expected string of length 1, but " __Pyx_FMT_TYPENAME " found",
|
| c_type_name);
|
| __Pyx_DECREF_TypeName(c_type_name);
|
| return (long)(Py_UCS4)-1;
|
| }
|
| PyErr_Format(PyExc_TypeError,
|
| "ord() expected a character, but string of length %zd found", size);
|
| return (long)(Py_UCS4)-1;
|
| }
|
|
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_Keys(PyObject* d);
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_Keys(PyObject* d) {
|
| if (PY_MAJOR_VERSION >= 3)
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "keys", d);
|
| else
|
| return PyDict_Keys(d);
|
| }
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_Values(PyObject* d);
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_Values(PyObject* d) {
|
| if (PY_MAJOR_VERSION >= 3)
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "values", d);
|
| else
|
| return PyDict_Values(d);
|
| }
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_Items(PyObject* d);
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_Items(PyObject* d) {
|
| if (PY_MAJOR_VERSION >= 3)
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "items", d);
|
| else
|
| return PyDict_Items(d);
|
| }
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_IterKeys(PyObject* d);
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_IterKeys(PyObject* d) {
|
| if (PY_MAJOR_VERSION >= 3)
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "keys", d);
|
| else
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "iterkeys", d);
|
| }
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_IterValues(PyObject* d);
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_IterValues(PyObject* d) {
|
| if (PY_MAJOR_VERSION >= 3)
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "values", d);
|
| else
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "itervalues", d);
|
| }
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_IterItems(PyObject* d);
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_IterItems(PyObject* d) {
|
| if (PY_MAJOR_VERSION >= 3)
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "items", d);
|
| else
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "iteritems", d);
|
| }
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_ViewKeys(PyObject* d);
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_ViewKeys(PyObject* d) {
|
| if (PY_MAJOR_VERSION >= 3)
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "keys", d);
|
| else
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "viewkeys", d);
|
| }
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_ViewValues(PyObject* d);
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_ViewValues(PyObject* d) {
|
| if (PY_MAJOR_VERSION >= 3)
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "values", d);
|
| else
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "viewvalues", d);
|
| }
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_ViewItems(PyObject* d);
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyDict_ViewItems(PyObject* d) {
|
| if (PY_MAJOR_VERSION >= 3)
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "items", d);
|
| else
|
| return CALL_UNBOUND_METHOD(PyDict_Type, "viewitems", d);
|
| }
|
|
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyFrozenSet_New(PyObject* it);
|
|
|
|
|
|
|
|
|
| static CYTHON_INLINE PyObject* __Pyx_PyFrozenSet_New(PyObject* it) {
|
| if (it) {
|
| PyObject* result;
|
| #if CYTHON_COMPILING_IN_PYPY
|
|
|
| PyObject* args;
|
| args = PyTuple_Pack(1, it);
|
| if (unlikely(!args))
|
| return NULL;
|
| result = PyObject_Call((PyObject*)&PyFrozenSet_Type, args, NULL);
|
| Py_DECREF(args);
|
| return result;
|
| #else
|
| if (PyFrozenSet_CheckExact(it)) {
|
| Py_INCREF(it);
|
| return it;
|
| }
|
| result = PyFrozenSet_New(it);
|
| if (unlikely(!result))
|
| return NULL;
|
| if ((PY_VERSION_HEX >= 0x031000A1) || likely(PySet_GET_SIZE(result)))
|
| return result;
|
|
|
|
|
| Py_DECREF(result);
|
| #endif
|
| }
|
| #if CYTHON_USE_TYPE_SLOTS
|
| return PyFrozenSet_Type.tp_new(&PyFrozenSet_Type, $empty_tuple, NULL);
|
| #else
|
| return PyObject_Call((PyObject*)&PyFrozenSet_Type, $empty_tuple, NULL);
|
| #endif
|
| }
|
|
|
|
|
|
|
|
|
| static CYTHON_INLINE int __Pyx_PySet_Update(PyObject* set, PyObject* it);
|
|
|
|
|
|
|
| static CYTHON_INLINE int __Pyx_PySet_Update(PyObject* set, PyObject* it) {
|
| PyObject *retval;
|
| #if CYTHON_USE_TYPE_SLOTS && !CYTHON_COMPILING_IN_PYPY
|
| if (PyAnySet_Check(it)) {
|
| if (PySet_GET_SIZE(it) == 0)
|
| return 0;
|
|
|
| retval = PySet_Type.tp_as_number->nb_inplace_or(set, it);
|
| if (likely(retval == set)) {
|
| Py_DECREF(retval);
|
| return 0;
|
| }
|
| if (unlikely(!retval))
|
| return -1;
|
|
|
| Py_DECREF(retval);
|
| }
|
| #endif
|
| retval = CALL_UNBOUND_METHOD(PySet_Type, "update", set, it);
|
| if (unlikely(!retval)) return -1;
|
| Py_DECREF(retval);
|
| return 0;
|
| }
|
|
|
|
|
|
|
|
|
| #if !CYTHON_COMPILING_IN_LIMITED_API || CYTHON_LIMITED_API >= 0x030b0000
|
| #define __Pyx_PyMemoryView_Get_{{name}}(o) PyMemoryView_GET_BUFFER(o)->{{name}}
|
| #else
|
| {{py:
|
| out_types = dict(
|
| ndim='int', readonly='int',
|
| len='Py_ssize_t', itemsize='Py_ssize_t')
|
| }}
|
| {{py: out_type = out_types[name]}}
|
| static {{out_type}} __Pyx_PyMemoryView_Get_{{name}}(PyObject *obj);
|
| #endif
|
|
|
|
|
|
|
| #if !CYTHON_COMPILING_IN_LIMITED_API || CYTHON_LIMITED_API >= 0x030b0000
|
| #else
|
| {{py:
|
| out_types = dict(
|
| ndim='int', readonly='int',
|
| len='Py_ssize_t', itemsize='Py_ssize_t')
|
| }}
|
| {{py: out_type = out_types[name]}}
|
| static {{out_type}} __Pyx_PyMemoryView_Get_{{name}}(PyObject *obj) {
|
| {{out_type}} result;
|
| PyObject *attr = PyObject_GetAttr(obj, PYIDENT("{{name}}"));
|
| if (!attr) {
|
| goto bad;
|
| }
|
| {{if out_type == 'int'}}
|
|
|
|
|
| result = PyLong_AsLong(attr);
|
| {{elif out_type == 'Py_ssize_t'}}
|
| result = PyLong_AsSsize_t(attr);
|
| {{endif}}
|
| Py_DECREF(attr);
|
| return result;
|
|
|
| bad:
|
| Py_XDECREF(attr);
|
| return -1;
|
| }
|
| #endif
|
|
|