mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 18:43:58 +03:00
Remove providers/utils.h
This commit is contained in:
parent
a1f2a14a03
commit
9727b4924e
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -63,5 +63,9 @@ venv/
|
||||||
.ropeproject/
|
.ropeproject/
|
||||||
|
|
||||||
# C extensions
|
# C extensions
|
||||||
|
src/dependency_injector/*.h
|
||||||
src/dependency_injector/*.so
|
src/dependency_injector/*.so
|
||||||
|
src/dependency_injector/containers/*.h
|
||||||
|
src/dependency_injector/containers/*.so
|
||||||
|
src/dependency_injector/providers/*.h
|
||||||
src/dependency_injector/providers/*.so
|
src/dependency_injector/providers/*.so
|
||||||
|
|
|
@ -975,7 +975,7 @@ static int __Pyx_InitStrings(__Pyx_StringTabEntry *t);
|
||||||
|
|
||||||
|
|
||||||
/* Module declarations from 'dependency_injector.providers.utils' */
|
/* Module declarations from 'dependency_injector.providers.utils' */
|
||||||
__PYX_EXTERN_C DL_EXPORT(PyObject) *__pyx_v_19dependency_injector_9providers_5utils_CLASS_TYPES;
|
static PyObject *__pyx_v_19dependency_injector_9providers_5utils_CLASS_TYPES = 0;
|
||||||
static int __pyx_f_19dependency_injector_9providers_5utils_is_provider(PyObject *, int __pyx_skip_dispatch); /*proto*/
|
static int __pyx_f_19dependency_injector_9providers_5utils_is_provider(PyObject *, int __pyx_skip_dispatch); /*proto*/
|
||||||
static PyObject *__pyx_f_19dependency_injector_9providers_5utils_ensure_is_provider(PyObject *, int __pyx_skip_dispatch); /*proto*/
|
static PyObject *__pyx_f_19dependency_injector_9providers_5utils_ensure_is_provider(PyObject *, int __pyx_skip_dispatch); /*proto*/
|
||||||
static int __pyx_f_19dependency_injector_9providers_5utils_is_delegated(PyObject *, int __pyx_skip_dispatch); /*proto*/
|
static int __pyx_f_19dependency_injector_9providers_5utils_is_delegated(PyObject *, int __pyx_skip_dispatch); /*proto*/
|
||||||
|
@ -1313,7 +1313,6 @@ static PyObject *__pyx_lambda_funcdef_19dependency_injector_9providers_5utils_la
|
||||||
__Pyx_RefNannyFinishContext();
|
__Pyx_RefNannyFinishContext();
|
||||||
return __pyx_r;
|
return __pyx_r;
|
||||||
}
|
}
|
||||||
PyObject *__pyx_v_19dependency_injector_9providers_5utils_CLASS_TYPES = 0;
|
|
||||||
|
|
||||||
/* "dependency_injector/providers/utils.pyx":25
|
/* "dependency_injector/providers/utils.pyx":25
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
/* Generated by Cython 0.25.1 */
|
|
||||||
|
|
||||||
#ifndef __PYX_HAVE__dependency_injector__providers__utils
|
|
||||||
#define __PYX_HAVE__dependency_injector__providers__utils
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef __PYX_HAVE_API__dependency_injector__providers__utils
|
|
||||||
|
|
||||||
#ifndef __PYX_EXTERN_C
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#define __PYX_EXTERN_C extern "C"
|
|
||||||
#else
|
|
||||||
#define __PYX_EXTERN_C extern
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef DL_IMPORT
|
|
||||||
#define DL_IMPORT(_T) _T
|
|
||||||
#endif
|
|
||||||
|
|
||||||
__PYX_EXTERN_C DL_IMPORT(PyObject) *__pyx_v_19dependency_injector_9providers_5utils_CLASS_TYPES;
|
|
||||||
|
|
||||||
#endif /* !__PYX_HAVE_API__dependency_injector__providers__utils */
|
|
||||||
|
|
||||||
#if PY_MAJOR_VERSION < 3
|
|
||||||
PyMODINIT_FUNC initutils(void);
|
|
||||||
#else
|
|
||||||
PyMODINIT_FUNC PyInit_utils(void);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* !__PYX_HAVE__dependency_injector__providers__utils */
|
|
|
@ -3,7 +3,7 @@
|
||||||
Powered by Cython.
|
Powered by Cython.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
cdef public object CLASS_TYPES
|
cdef object CLASS_TYPES
|
||||||
|
|
||||||
|
|
||||||
cpdef bint is_provider(object instance)
|
cpdef bint is_provider(object instance)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user