Update Cython to 0.29.2 (#213)
* Update Cython to 0.29.2 * Regenerate C sources * Update changelog
This commit is contained in:
parent
2792d02455
commit
7c47c67808
|
@ -12,6 +12,7 @@ Development version
|
|||
- Fix issue with copying providers that have system streams injections
|
||||
(``sys.stdin``, ``sys.stdout`` and ``sys.stderr``).
|
||||
- Add support of six 1.12.0.
|
||||
- Regenerate C sources using Cython 0.29.2.
|
||||
|
||||
3.14.2
|
||||
------
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
cython==0.29
|
||||
cython==0.29.2
|
||||
tox
|
||||
unittest2
|
||||
coverage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* Generated by Cython 0.29 */
|
||||
/* Generated by Cython 0.29.2 */
|
||||
|
||||
#define PY_SSIZE_T_CLEAN
|
||||
#include "Python.h"
|
||||
|
@ -7,8 +7,8 @@
|
|||
#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000)
|
||||
#error Cython requires Python 2.6+ or Python 3.3+.
|
||||
#else
|
||||
#define CYTHON_ABI "0_29"
|
||||
#define CYTHON_HEX_VERSION 0x001D00F0
|
||||
#define CYTHON_ABI "0_29_2"
|
||||
#define CYTHON_HEX_VERSION 0x001D02F0
|
||||
#define CYTHON_FUTURE_DIVISION 0
|
||||
#include <stddef.h>
|
||||
#ifndef offsetof
|
||||
|
@ -197,6 +197,9 @@
|
|||
#undef SHIFT
|
||||
#undef BASE
|
||||
#undef MASK
|
||||
#ifdef SIZEOF_VOID_P
|
||||
enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
|
||||
#endif
|
||||
#endif
|
||||
#ifndef __has_attribute
|
||||
#define __has_attribute(x) 0
|
||||
|
@ -1902,7 +1905,7 @@ static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args,
|
|||
#include "frameobject.h"
|
||||
#define __Pxy_PyFrame_Initialize_Offsets()\
|
||||
((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\
|
||||
(void)(__pyx_pyframe_localsplus_offset = PyFrame_Type.tp_basicsize - Py_MEMBER_SIZE(PyFrameObject, f_localsplus)))
|
||||
(void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus)))
|
||||
#define __Pyx_PyFrame_GetLocalsplus(frame)\
|
||||
(assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset))
|
||||
#endif
|
||||
|
@ -10325,17 +10328,6 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|||
__Pyx_GOTREF(__pyx_slice_);
|
||||
__Pyx_GIVEREF(__pyx_slice_);
|
||||
|
||||
/* "dependency_injector/containers.pyx":338
|
||||
* raise Error('Container {0} is not overridden'.format(cls))
|
||||
*
|
||||
* cls.overridden = cls.overridden[:-1] # <<<<<<<<<<<<<<
|
||||
*
|
||||
* for provider in six.itervalues(cls.providers):
|
||||
*/
|
||||
__pyx_slice_ = PySlice_New(Py_None, __pyx_int_neg_1, Py_None); if (unlikely(!__pyx_slice_)) __PYX_ERR(0, 338, __pyx_L1_error)
|
||||
__Pyx_GOTREF(__pyx_slice_);
|
||||
__Pyx_GIVEREF(__pyx_slice_);
|
||||
|
||||
/* "dependency_injector/containers.pyx":365
|
||||
* :rtype: callable(:py:class:`DeclarativeContainer`)
|
||||
* """
|
||||
|
@ -10876,11 +10868,13 @@ static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) {
|
|||
}
|
||||
return 0;
|
||||
}
|
||||
static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name) {
|
||||
static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) {
|
||||
PyObject *value = PyObject_GetAttrString(spec, from_name);
|
||||
int result = 0;
|
||||
if (likely(value)) {
|
||||
result = PyDict_SetItemString(moddict, to_name, value);
|
||||
if (allow_none || value != Py_None) {
|
||||
result = PyDict_SetItemString(moddict, to_name, value);
|
||||
}
|
||||
Py_DECREF(value);
|
||||
} else if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
|
||||
PyErr_Clear();
|
||||
|
@ -10902,10 +10896,10 @@ static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNU
|
|||
if (unlikely(!module)) goto bad;
|
||||
moddict = PyModule_GetDict(module);
|
||||
if (unlikely(!moddict)) goto bad;
|
||||
if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__") < 0)) goto bad;
|
||||
if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__") < 0)) goto bad;
|
||||
if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__") < 0)) goto bad;
|
||||
if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__") < 0)) goto bad;
|
||||
if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad;
|
||||
if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad;
|
||||
if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad;
|
||||
if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad;
|
||||
return module;
|
||||
bad:
|
||||
Py_XDECREF(module);
|
||||
|
@ -14608,7 +14602,7 @@ void __Pyx_Coroutine_ExceptionClear(__Pyx_ExcInfoStruct *exc_state) {
|
|||
#define __Pyx_Coroutine_AlreadyRunningError(gen) (__Pyx__Coroutine_AlreadyRunningError(gen), (PyObject*)NULL)
|
||||
static void __Pyx__Coroutine_AlreadyRunningError(CYTHON_UNUSED __pyx_CoroutineObject *gen) {
|
||||
const char *msg;
|
||||
if (0) {
|
||||
if ((0)) {
|
||||
#ifdef __Pyx_Coroutine_USED
|
||||
} else if (__Pyx_Coroutine_Check((PyObject*)gen)) {
|
||||
msg = "coroutine already executing";
|
||||
|
@ -14625,7 +14619,7 @@ static void __Pyx__Coroutine_AlreadyRunningError(CYTHON_UNUSED __pyx_CoroutineOb
|
|||
#define __Pyx_Coroutine_NotStartedError(gen) (__Pyx__Coroutine_NotStartedError(gen), (PyObject*)NULL)
|
||||
static void __Pyx__Coroutine_NotStartedError(CYTHON_UNUSED PyObject *gen) {
|
||||
const char *msg;
|
||||
if (0) {
|
||||
if ((0)) {
|
||||
#ifdef __Pyx_Coroutine_USED
|
||||
} else if (__Pyx_Coroutine_Check(gen)) {
|
||||
msg = "can't send non-None value to a just-started coroutine";
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue