mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-21 17:16:46 +03:00
Regenerate C sources using Cython 0.28.3
This commit is contained in:
parent
926d152d3b
commit
4d3573dd6f
|
@ -10,6 +10,10 @@ follows `Semantic versioning`_
|
|||
Development version
|
||||
-------------------
|
||||
- Add new example miniapp "ioc_container".
|
||||
- Fix incompatibility issue between Python 3.3, pip 10.0.0 and virtualenv
|
||||
16.0.0 (`details <https://github.com/awslabs/base64io-python/issues/4>`_)
|
||||
that caused failures of Python 3.3 tests on Travis.
|
||||
- Regenerate C sources using Cython 0.28.3.
|
||||
|
||||
3.12.0
|
||||
------
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
cython==0.27.3
|
||||
cython==0.28.3
|
||||
tox
|
||||
unittest2
|
||||
coverage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* Generated by Cython 0.28.2 */
|
||||
/* Generated by Cython 0.28.3 */
|
||||
|
||||
#define PY_SSIZE_T_CLEAN
|
||||
#include "Python.h"
|
||||
|
@ -7,7 +7,7 @@
|
|||
#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_28_2"
|
||||
#define CYTHON_ABI "0_28_3"
|
||||
#define CYTHON_FUTURE_DIVISION 0
|
||||
#include <stddef.h>
|
||||
#ifndef offsetof
|
||||
|
@ -453,6 +453,7 @@ static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) {
|
|||
#define PyString_Type PyUnicode_Type
|
||||
#define PyString_Check PyUnicode_Check
|
||||
#define PyString_CheckExact PyUnicode_CheckExact
|
||||
#define PyObject_Unicode PyObject_Str
|
||||
#endif
|
||||
#if PY_MAJOR_VERSION >= 3
|
||||
#define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj)
|
||||
|
@ -645,7 +646,7 @@ static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) {
|
|||
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
||||
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
||||
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
||||
#define __Pyx_PyBool_FromLong(b) ((b) ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False))
|
||||
static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b);
|
||||
static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*);
|
||||
static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x);
|
||||
#define __Pyx_PySequence_Tuple(obj)\
|
||||
|
@ -753,7 +754,7 @@ static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; }
|
|||
static PyObject *__pyx_m = NULL;
|
||||
static PyObject *__pyx_d;
|
||||
static PyObject *__pyx_b;
|
||||
static PyObject *__pyx_cython_runtime;
|
||||
static PyObject *__pyx_cython_runtime = NULL;
|
||||
static PyObject *__pyx_empty_tuple;
|
||||
static PyObject *__pyx_empty_bytes;
|
||||
static PyObject *__pyx_empty_unicode;
|
||||
|
@ -11455,7 +11456,7 @@ static int __Pyx_modinit_function_import_code(void) {
|
|||
#ifndef CYTHON_SMALL_CODE
|
||||
#if defined(__clang__)
|
||||
#define CYTHON_SMALL_CODE
|
||||
#elif defined(__GNUC__)
|
||||
#elif defined(__GNUC__) && (!(defined(__cplusplus)) || (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 4)))
|
||||
#define CYTHON_SMALL_CODE __attribute__((optimize("Os")))
|
||||
#else
|
||||
#define CYTHON_SMALL_CODE
|
||||
|
@ -14131,6 +14132,9 @@ static int __Pyx_CLineForTraceback(CYTHON_UNUSED PyThreadState *tstate, int c_li
|
|||
#if CYTHON_COMPILING_IN_CPYTHON
|
||||
PyObject **cython_runtime_dict;
|
||||
#endif
|
||||
if (unlikely(!__pyx_cython_runtime)) {
|
||||
return c_line;
|
||||
}
|
||||
__Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback);
|
||||
#if CYTHON_COMPILING_IN_CPYTHON
|
||||
cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime);
|
||||
|
@ -16325,6 +16329,9 @@ static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) {
|
|||
Py_DECREF(x);
|
||||
return ival;
|
||||
}
|
||||
static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) {
|
||||
return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False);
|
||||
}
|
||||
static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) {
|
||||
return PyInt_FromSize_t(ival);
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* Generated by Cython 0.28.2 */
|
||||
/* Generated by Cython 0.28.3 */
|
||||
|
||||
#define PY_SSIZE_T_CLEAN
|
||||
#include "Python.h"
|
||||
|
@ -7,7 +7,7 @@
|
|||
#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_28_2"
|
||||
#define CYTHON_ABI "0_28_3"
|
||||
#define CYTHON_FUTURE_DIVISION 0
|
||||
#include <stddef.h>
|
||||
#ifndef offsetof
|
||||
|
@ -453,6 +453,7 @@ static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) {
|
|||
#define PyString_Type PyUnicode_Type
|
||||
#define PyString_Check PyUnicode_Check
|
||||
#define PyString_CheckExact PyUnicode_CheckExact
|
||||
#define PyObject_Unicode PyObject_Str
|
||||
#endif
|
||||
#if PY_MAJOR_VERSION >= 3
|
||||
#define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj)
|
||||
|
@ -645,7 +646,7 @@ static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) {
|
|||
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
||||
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
||||
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
||||
#define __Pyx_PyBool_FromLong(b) ((b) ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False))
|
||||
static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b);
|
||||
static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*);
|
||||
static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x);
|
||||
#define __Pyx_PySequence_Tuple(obj)\
|
||||
|
@ -753,7 +754,7 @@ static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; }
|
|||
static PyObject *__pyx_m = NULL;
|
||||
static PyObject *__pyx_d;
|
||||
static PyObject *__pyx_b;
|
||||
static PyObject *__pyx_cython_runtime;
|
||||
static PyObject *__pyx_cython_runtime = NULL;
|
||||
static PyObject *__pyx_empty_tuple;
|
||||
static PyObject *__pyx_empty_bytes;
|
||||
static PyObject *__pyx_empty_unicode;
|
||||
|
@ -56515,7 +56516,7 @@ static int __Pyx_modinit_function_import_code(void) {
|
|||
#ifndef CYTHON_SMALL_CODE
|
||||
#if defined(__clang__)
|
||||
#define CYTHON_SMALL_CODE
|
||||
#elif defined(__GNUC__)
|
||||
#elif defined(__GNUC__) && (!(defined(__cplusplus)) || (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 4)))
|
||||
#define CYTHON_SMALL_CODE __attribute__((optimize("Os")))
|
||||
#else
|
||||
#define CYTHON_SMALL_CODE
|
||||
|
@ -59958,6 +59959,9 @@ static int __Pyx_CLineForTraceback(CYTHON_UNUSED PyThreadState *tstate, int c_li
|
|||
#if CYTHON_COMPILING_IN_CPYTHON
|
||||
PyObject **cython_runtime_dict;
|
||||
#endif
|
||||
if (unlikely(!__pyx_cython_runtime)) {
|
||||
return c_line;
|
||||
}
|
||||
__Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback);
|
||||
#if CYTHON_COMPILING_IN_CPYTHON
|
||||
cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime);
|
||||
|
@ -60939,6 +60943,9 @@ static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) {
|
|||
Py_DECREF(x);
|
||||
return ival;
|
||||
}
|
||||
static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) {
|
||||
return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False);
|
||||
}
|
||||
static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) {
|
||||
return PyInt_FromSize_t(ival);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user