mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-16 19:40:59 +03:00
Update types and add tests (#480)
This commit is contained in:
parent
547b7fd844
commit
06f9855140
|
@ -2591,12 +2591,6 @@ static CYTHON_INLINE int __Pyx_IterFinish(void);
|
||||||
/* UnpackItemEndCheck.proto */
|
/* UnpackItemEndCheck.proto */
|
||||||
static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected);
|
static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected);
|
||||||
|
|
||||||
/* ArgTypeTest.proto */
|
|
||||||
#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\
|
|
||||||
((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\
|
|
||||||
__Pyx__ArgTypeTest(obj, type, name, exact))
|
|
||||||
static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact);
|
|
||||||
|
|
||||||
/* IncludeStringH.proto */
|
/* IncludeStringH.proto */
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
@ -2963,6 +2957,12 @@ static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb);
|
||||||
/* None.proto */
|
/* None.proto */
|
||||||
static CYTHON_INLINE void __Pyx_RaiseUnboundLocalError(const char *varname);
|
static CYTHON_INLINE void __Pyx_RaiseUnboundLocalError(const char *varname);
|
||||||
|
|
||||||
|
/* ArgTypeTest.proto */
|
||||||
|
#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\
|
||||||
|
((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\
|
||||||
|
__Pyx__ArgTypeTest(obj, type, name, exact))
|
||||||
|
static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact);
|
||||||
|
|
||||||
/* UnpackUnboundCMethod.proto */
|
/* UnpackUnboundCMethod.proto */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
PyObject *type;
|
PyObject *type;
|
||||||
|
@ -5185,7 +5185,7 @@ static PyObject *__pyx_pf_19dependency_injector_10containers_16DynamicContainer_
|
||||||
*
|
*
|
||||||
* return copied # <<<<<<<<<<<<<<
|
* return copied # <<<<<<<<<<<<<<
|
||||||
*
|
*
|
||||||
* def __setattr__(self, str name, object value):
|
* def __setattr__(self, name, value):
|
||||||
*/
|
*/
|
||||||
__Pyx_XDECREF(__pyx_r);
|
__Pyx_XDECREF(__pyx_r);
|
||||||
__Pyx_INCREF(__pyx_v_copied);
|
__Pyx_INCREF(__pyx_v_copied);
|
||||||
|
@ -5222,14 +5222,14 @@ static PyObject *__pyx_pf_19dependency_injector_10containers_16DynamicContainer_
|
||||||
/* "dependency_injector/containers.pyx":106
|
/* "dependency_injector/containers.pyx":106
|
||||||
* return copied
|
* return copied
|
||||||
*
|
*
|
||||||
* def __setattr__(self, str name, object value): # <<<<<<<<<<<<<<
|
* def __setattr__(self, name, value): # <<<<<<<<<<<<<<
|
||||||
* """Set instance attribute.
|
* """Set instance attribute.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Python wrapper */
|
/* Python wrapper */
|
||||||
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_5__setattr__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
|
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_5__setattr__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
|
||||||
static char __pyx_doc_19dependency_injector_10containers_16DynamicContainer_4__setattr__[] = "Set instance attribute.\n\n If value of attribute is provider, it will be added into providers\n dictionary.\n\n :param name: Attribute's name\n :type name: str\n\n :param value: Attribute's value\n :type value: object\n\n :rtype: None\n ";
|
static char __pyx_doc_19dependency_injector_10containers_16DynamicContainer_4__setattr__[] = "Set instance attribute.\n\n If value of attribute is provider, it will be added into providers\n dictionary.\n\n :param name: Attribute's name\n :type name: object\n\n :param value: Attribute's value\n :type value: object\n\n :rtype: None\n ";
|
||||||
static PyMethodDef __pyx_mdef_19dependency_injector_10containers_16DynamicContainer_5__setattr__ = {"__setattr__", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_19dependency_injector_10containers_16DynamicContainer_5__setattr__, METH_VARARGS|METH_KEYWORDS, __pyx_doc_19dependency_injector_10containers_16DynamicContainer_4__setattr__};
|
static PyMethodDef __pyx_mdef_19dependency_injector_10containers_16DynamicContainer_5__setattr__ = {"__setattr__", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_19dependency_injector_10containers_16DynamicContainer_5__setattr__, METH_VARARGS|METH_KEYWORDS, __pyx_doc_19dependency_injector_10containers_16DynamicContainer_4__setattr__};
|
||||||
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_5__setattr__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
|
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_5__setattr__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
|
||||||
PyObject *__pyx_v_self = 0;
|
PyObject *__pyx_v_self = 0;
|
||||||
|
@ -5286,7 +5286,7 @@ static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_
|
||||||
values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
|
values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
|
||||||
}
|
}
|
||||||
__pyx_v_self = values[0];
|
__pyx_v_self = values[0];
|
||||||
__pyx_v_name = ((PyObject*)values[1]);
|
__pyx_v_name = values[1];
|
||||||
__pyx_v_value = values[2];
|
__pyx_v_value = values[2];
|
||||||
}
|
}
|
||||||
goto __pyx_L4_argument_unpacking_done;
|
goto __pyx_L4_argument_unpacking_done;
|
||||||
|
@ -5297,14 +5297,9 @@ static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_
|
||||||
__Pyx_RefNannyFinishContext();
|
__Pyx_RefNannyFinishContext();
|
||||||
return NULL;
|
return NULL;
|
||||||
__pyx_L4_argument_unpacking_done:;
|
__pyx_L4_argument_unpacking_done:;
|
||||||
if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_name), (&PyString_Type), 1, "name", 1))) __PYX_ERR(0, 106, __pyx_L1_error)
|
|
||||||
__pyx_r = __pyx_pf_19dependency_injector_10containers_16DynamicContainer_4__setattr__(__pyx_self, __pyx_v_self, __pyx_v_name, __pyx_v_value);
|
__pyx_r = __pyx_pf_19dependency_injector_10containers_16DynamicContainer_4__setattr__(__pyx_self, __pyx_v_self, __pyx_v_name, __pyx_v_value);
|
||||||
|
|
||||||
/* function exit code */
|
/* function exit code */
|
||||||
goto __pyx_L0;
|
|
||||||
__pyx_L1_error:;
|
|
||||||
__pyx_r = NULL;
|
|
||||||
__pyx_L0:;
|
|
||||||
__Pyx_RefNannyFinishContext();
|
__Pyx_RefNannyFinishContext();
|
||||||
return __pyx_r;
|
return __pyx_r;
|
||||||
}
|
}
|
||||||
|
@ -5375,8 +5370,7 @@ static PyObject *__pyx_pf_19dependency_injector_10containers_16DynamicContainer_
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
__pyx_t_4 = (__Pyx_PyString_Equals(__pyx_v_name, __pyx_n_s_parent, Py_NE)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 122, __pyx_L1_error)
|
__pyx_t_4 = (__Pyx_PyString_Equals(__pyx_v_name, __pyx_n_s_parent, Py_NE)); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 122, __pyx_L1_error)
|
||||||
__pyx_t_5 = (__pyx_t_4 != 0);
|
__pyx_t_1 = __pyx_t_4;
|
||||||
__pyx_t_1 = __pyx_t_5;
|
|
||||||
__pyx_L4_bool_binop_done:;
|
__pyx_L4_bool_binop_done:;
|
||||||
|
|
||||||
/* "dependency_injector/containers.pyx":120
|
/* "dependency_injector/containers.pyx":120
|
||||||
|
@ -5425,8 +5419,8 @@ static PyObject *__pyx_pf_19dependency_injector_10containers_16DynamicContainer_
|
||||||
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
||||||
__pyx_t_1 = PyObject_IsInstance(__pyx_v_value, __pyx_t_3); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(0, 127, __pyx_L1_error)
|
__pyx_t_1 = PyObject_IsInstance(__pyx_v_value, __pyx_t_3); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(0, 127, __pyx_L1_error)
|
||||||
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
||||||
__pyx_t_5 = (__pyx_t_1 != 0);
|
__pyx_t_4 = (__pyx_t_1 != 0);
|
||||||
if (__pyx_t_5) {
|
if (__pyx_t_4) {
|
||||||
|
|
||||||
/* "dependency_injector/containers.pyx":128
|
/* "dependency_injector/containers.pyx":128
|
||||||
*
|
*
|
||||||
|
@ -5477,7 +5471,7 @@ static PyObject *__pyx_pf_19dependency_injector_10containers_16DynamicContainer_
|
||||||
*
|
*
|
||||||
* super(DynamicContainer, self).__setattr__(name, value) # <<<<<<<<<<<<<<
|
* super(DynamicContainer, self).__setattr__(name, value) # <<<<<<<<<<<<<<
|
||||||
*
|
*
|
||||||
* def __delattr__(self, str name):
|
* def __delattr__(self, name):
|
||||||
*/
|
*/
|
||||||
__Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_DynamicContainer); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 130, __pyx_L1_error)
|
__Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_DynamicContainer); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 130, __pyx_L1_error)
|
||||||
__Pyx_GOTREF(__pyx_t_2);
|
__Pyx_GOTREF(__pyx_t_2);
|
||||||
|
@ -5545,7 +5539,7 @@ static PyObject *__pyx_pf_19dependency_injector_10containers_16DynamicContainer_
|
||||||
/* "dependency_injector/containers.pyx":106
|
/* "dependency_injector/containers.pyx":106
|
||||||
* return copied
|
* return copied
|
||||||
*
|
*
|
||||||
* def __setattr__(self, str name, object value): # <<<<<<<<<<<<<<
|
* def __setattr__(self, name, value): # <<<<<<<<<<<<<<
|
||||||
* """Set instance attribute.
|
* """Set instance attribute.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@ -5569,14 +5563,14 @@ static PyObject *__pyx_pf_19dependency_injector_10containers_16DynamicContainer_
|
||||||
/* "dependency_injector/containers.pyx":132
|
/* "dependency_injector/containers.pyx":132
|
||||||
* super(DynamicContainer, self).__setattr__(name, value)
|
* super(DynamicContainer, self).__setattr__(name, value)
|
||||||
*
|
*
|
||||||
* def __delattr__(self, str name): # <<<<<<<<<<<<<<
|
* def __delattr__(self, name): # <<<<<<<<<<<<<<
|
||||||
* """Delete instance attribute.
|
* """Delete instance attribute.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Python wrapper */
|
/* Python wrapper */
|
||||||
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_7__delattr__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
|
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_7__delattr__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
|
||||||
static char __pyx_doc_19dependency_injector_10containers_16DynamicContainer_6__delattr__[] = "Delete instance attribute.\n\n If value of attribute is provider, it will be deleted from providers\n dictionary.\n\n :param name: Attribute's name\n :type name: str\n\n :rtype: None\n ";
|
static char __pyx_doc_19dependency_injector_10containers_16DynamicContainer_6__delattr__[] = "Delete instance attribute.\n\n If value of attribute is provider, it will be deleted from providers\n dictionary.\n\n :param name: Attribute's name\n :type name: object\n\n :rtype: None\n ";
|
||||||
static PyMethodDef __pyx_mdef_19dependency_injector_10containers_16DynamicContainer_7__delattr__ = {"__delattr__", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_19dependency_injector_10containers_16DynamicContainer_7__delattr__, METH_VARARGS|METH_KEYWORDS, __pyx_doc_19dependency_injector_10containers_16DynamicContainer_6__delattr__};
|
static PyMethodDef __pyx_mdef_19dependency_injector_10containers_16DynamicContainer_7__delattr__ = {"__delattr__", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_19dependency_injector_10containers_16DynamicContainer_7__delattr__, METH_VARARGS|METH_KEYWORDS, __pyx_doc_19dependency_injector_10containers_16DynamicContainer_6__delattr__};
|
||||||
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_7__delattr__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
|
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_7__delattr__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
|
||||||
PyObject *__pyx_v_self = 0;
|
PyObject *__pyx_v_self = 0;
|
||||||
|
@ -5623,7 +5617,7 @@ static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_
|
||||||
values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
|
values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
|
||||||
}
|
}
|
||||||
__pyx_v_self = values[0];
|
__pyx_v_self = values[0];
|
||||||
__pyx_v_name = ((PyObject*)values[1]);
|
__pyx_v_name = values[1];
|
||||||
}
|
}
|
||||||
goto __pyx_L4_argument_unpacking_done;
|
goto __pyx_L4_argument_unpacking_done;
|
||||||
__pyx_L5_argtuple_error:;
|
__pyx_L5_argtuple_error:;
|
||||||
|
@ -5633,14 +5627,9 @@ static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_
|
||||||
__Pyx_RefNannyFinishContext();
|
__Pyx_RefNannyFinishContext();
|
||||||
return NULL;
|
return NULL;
|
||||||
__pyx_L4_argument_unpacking_done:;
|
__pyx_L4_argument_unpacking_done:;
|
||||||
if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_name), (&PyString_Type), 1, "name", 1))) __PYX_ERR(0, 132, __pyx_L1_error)
|
|
||||||
__pyx_r = __pyx_pf_19dependency_injector_10containers_16DynamicContainer_6__delattr__(__pyx_self, __pyx_v_self, __pyx_v_name);
|
__pyx_r = __pyx_pf_19dependency_injector_10containers_16DynamicContainer_6__delattr__(__pyx_self, __pyx_v_self, __pyx_v_name);
|
||||||
|
|
||||||
/* function exit code */
|
/* function exit code */
|
||||||
goto __pyx_L0;
|
|
||||||
__pyx_L1_error:;
|
|
||||||
__pyx_r = NULL;
|
|
||||||
__pyx_L0:;
|
|
||||||
__Pyx_RefNannyFinishContext();
|
__Pyx_RefNannyFinishContext();
|
||||||
return __pyx_r;
|
return __pyx_r;
|
||||||
}
|
}
|
||||||
|
@ -5736,7 +5725,7 @@ static PyObject *__pyx_pf_19dependency_injector_10containers_16DynamicContainer_
|
||||||
/* "dependency_injector/containers.pyx":132
|
/* "dependency_injector/containers.pyx":132
|
||||||
* super(DynamicContainer, self).__setattr__(name, value)
|
* super(DynamicContainer, self).__setattr__(name, value)
|
||||||
*
|
*
|
||||||
* def __delattr__(self, str name): # <<<<<<<<<<<<<<
|
* def __delattr__(self, name): # <<<<<<<<<<<<<<
|
||||||
* """Delete instance attribute.
|
* """Delete instance attribute.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@ -6273,7 +6262,7 @@ static PyObject *__pyx_gb_19dependency_injector_10containers_16DynamicContainer_
|
||||||
|
|
||||||
/* Python wrapper */
|
/* Python wrapper */
|
||||||
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_14set_providers(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
|
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_14set_providers(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
|
||||||
static char __pyx_doc_19dependency_injector_10containers_16DynamicContainer_13set_providers[] = "Set container providers.\n\n :param providers: Dictionary of providers\n :type providers:\n dict[str, :py:class:`dependency_injector.providers.Provider`]\n\n :rtype: None\n ";
|
static char __pyx_doc_19dependency_injector_10containers_16DynamicContainer_13set_providers[] = "Set container providers.\n\n :param providers: Dictionary of providers\n :type providers:\n dict[object, :py:class:`dependency_injector.providers.Provider`]\n\n :rtype: None\n ";
|
||||||
static PyMethodDef __pyx_mdef_19dependency_injector_10containers_16DynamicContainer_14set_providers = {"set_providers", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_19dependency_injector_10containers_16DynamicContainer_14set_providers, METH_VARARGS|METH_KEYWORDS, __pyx_doc_19dependency_injector_10containers_16DynamicContainer_13set_providers};
|
static PyMethodDef __pyx_mdef_19dependency_injector_10containers_16DynamicContainer_14set_providers = {"set_providers", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_19dependency_injector_10containers_16DynamicContainer_14set_providers, METH_VARARGS|METH_KEYWORDS, __pyx_doc_19dependency_injector_10containers_16DynamicContainer_13set_providers};
|
||||||
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_14set_providers(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
|
static PyObject *__pyx_pw_19dependency_injector_10containers_16DynamicContainer_14set_providers(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
|
||||||
PyObject *__pyx_v_self = 0;
|
PyObject *__pyx_v_self = 0;
|
||||||
|
@ -26744,7 +26733,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
||||||
/* "dependency_injector/containers.pyx":106
|
/* "dependency_injector/containers.pyx":106
|
||||||
* return copied
|
* return copied
|
||||||
*
|
*
|
||||||
* def __setattr__(self, str name, object value): # <<<<<<<<<<<<<<
|
* def __setattr__(self, name, value): # <<<<<<<<<<<<<<
|
||||||
* """Set instance attribute.
|
* """Set instance attribute.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@ -26756,7 +26745,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
||||||
/* "dependency_injector/containers.pyx":132
|
/* "dependency_injector/containers.pyx":132
|
||||||
* super(DynamicContainer, self).__setattr__(name, value)
|
* super(DynamicContainer, self).__setattr__(name, value)
|
||||||
*
|
*
|
||||||
* def __delattr__(self, str name): # <<<<<<<<<<<<<<
|
* def __delattr__(self, name): # <<<<<<<<<<<<<<
|
||||||
* """Delete instance attribute.
|
* """Delete instance attribute.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@ -28240,7 +28229,7 @@ if (!__Pyx_RefNanny) {
|
||||||
/* "dependency_injector/containers.pyx":106
|
/* "dependency_injector/containers.pyx":106
|
||||||
* return copied
|
* return copied
|
||||||
*
|
*
|
||||||
* def __setattr__(self, str name, object value): # <<<<<<<<<<<<<<
|
* def __setattr__(self, name, value): # <<<<<<<<<<<<<<
|
||||||
* """Set instance attribute.
|
* """Set instance attribute.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@ -28252,7 +28241,7 @@ if (!__Pyx_RefNanny) {
|
||||||
/* "dependency_injector/containers.pyx":132
|
/* "dependency_injector/containers.pyx":132
|
||||||
* super(DynamicContainer, self).__setattr__(name, value)
|
* super(DynamicContainer, self).__setattr__(name, value)
|
||||||
*
|
*
|
||||||
* def __delattr__(self, str name): # <<<<<<<<<<<<<<
|
* def __delattr__(self, name): # <<<<<<<<<<<<<<
|
||||||
* """Delete instance attribute.
|
* """Delete instance attribute.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@ -29934,27 +29923,6 @@ static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ArgTypeTest */
|
|
||||||
static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact)
|
|
||||||
{
|
|
||||||
if (unlikely(!type)) {
|
|
||||||
PyErr_SetString(PyExc_SystemError, "Missing type object");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
else if (exact) {
|
|
||||||
#if PY_MAJOR_VERSION == 2
|
|
||||||
if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (likely(__Pyx_TypeCheck(obj, type))) return 1;
|
|
||||||
}
|
|
||||||
PyErr_Format(PyExc_TypeError,
|
|
||||||
"Argument '%.200s' has incorrect type (expected %.200s, got %.200s)",
|
|
||||||
name, type->tp_name, Py_TYPE(obj)->tp_name);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* BytesEquals */
|
/* BytesEquals */
|
||||||
static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) {
|
static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) {
|
||||||
#if CYTHON_COMPILING_IN_PYPY
|
#if CYTHON_COMPILING_IN_PYPY
|
||||||
|
@ -32800,6 +32768,27 @@ static CYTHON_INLINE void __Pyx_RaiseUnboundLocalError(const char *varname) {
|
||||||
PyErr_Format(PyExc_UnboundLocalError, "local variable '%s' referenced before assignment", varname);
|
PyErr_Format(PyExc_UnboundLocalError, "local variable '%s' referenced before assignment", varname);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ArgTypeTest */
|
||||||
|
static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact)
|
||||||
|
{
|
||||||
|
if (unlikely(!type)) {
|
||||||
|
PyErr_SetString(PyExc_SystemError, "Missing type object");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
else if (exact) {
|
||||||
|
#if PY_MAJOR_VERSION == 2
|
||||||
|
if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if (likely(__Pyx_TypeCheck(obj, type))) return 1;
|
||||||
|
}
|
||||||
|
PyErr_Format(PyExc_TypeError,
|
||||||
|
"Argument '%.200s' has incorrect type (expected %.200s, got %.200s)",
|
||||||
|
name, type->tp_name, Py_TYPE(obj)->tp_name);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* UnpackUnboundCMethod */
|
/* UnpackUnboundCMethod */
|
||||||
static int __Pyx_TryUnpackUnboundCMethod(__Pyx_CachedCFunction* target) {
|
static int __Pyx_TryUnpackUnboundCMethod(__Pyx_CachedCFunction* target) {
|
||||||
PyObject *method;
|
PyObject *method;
|
||||||
|
|
|
@ -103,14 +103,14 @@ class DynamicContainer(Container):
|
||||||
|
|
||||||
return copied
|
return copied
|
||||||
|
|
||||||
def __setattr__(self, str name, object value):
|
def __setattr__(self, name, value):
|
||||||
"""Set instance attribute.
|
"""Set instance attribute.
|
||||||
|
|
||||||
If value of attribute is provider, it will be added into providers
|
If value of attribute is provider, it will be added into providers
|
||||||
dictionary.
|
dictionary.
|
||||||
|
|
||||||
:param name: Attribute's name
|
:param name: Attribute's name
|
||||||
:type name: str
|
:type name: object
|
||||||
|
|
||||||
:param value: Attribute's value
|
:param value: Attribute's value
|
||||||
:type value: object
|
:type value: object
|
||||||
|
@ -129,14 +129,14 @@ class DynamicContainer(Container):
|
||||||
|
|
||||||
super(DynamicContainer, self).__setattr__(name, value)
|
super(DynamicContainer, self).__setattr__(name, value)
|
||||||
|
|
||||||
def __delattr__(self, str name):
|
def __delattr__(self, name):
|
||||||
"""Delete instance attribute.
|
"""Delete instance attribute.
|
||||||
|
|
||||||
If value of attribute is provider, it will be deleted from providers
|
If value of attribute is provider, it will be deleted from providers
|
||||||
dictionary.
|
dictionary.
|
||||||
|
|
||||||
:param name: Attribute's name
|
:param name: Attribute's name
|
||||||
:type name: str
|
:type name: object
|
||||||
|
|
||||||
:rtype: None
|
:rtype: None
|
||||||
"""
|
"""
|
||||||
|
@ -169,7 +169,7 @@ class DynamicContainer(Container):
|
||||||
|
|
||||||
:param providers: Dictionary of providers
|
:param providers: Dictionary of providers
|
||||||
:type providers:
|
:type providers:
|
||||||
dict[str, :py:class:`dependency_injector.providers.Provider`]
|
dict[object, :py:class:`dependency_injector.providers.Provider`]
|
||||||
|
|
||||||
:rtype: None
|
:rtype: None
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -686,3 +686,36 @@ class SelfTests(unittest.TestCase):
|
||||||
|
|
||||||
self.assertIs(container.__self__(), container)
|
self.assertIs(container.__self__(), container)
|
||||||
self.assertIs(container.sub_container().__self__(), container.sub_container())
|
self.assertIs(container.sub_container().__self__(), container.sub_container())
|
||||||
|
|
||||||
|
|
||||||
|
class DynamicContainerWithCustomStringTests(unittest.TestCase):
|
||||||
|
# See: https://github.com/ets-labs/python-dependency-injector/issues/479
|
||||||
|
|
||||||
|
class CustomString(str):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class CustomClass:
|
||||||
|
thing = None
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.object = self.CustomClass()
|
||||||
|
self.container = containers.DynamicContainer()
|
||||||
|
self.provider = providers.Provider()
|
||||||
|
|
||||||
|
def test_setattr(self):
|
||||||
|
setattr(self.container, self.CustomString('test_attr'), self.provider)
|
||||||
|
self.assertIs(self.container.test_attr, self.provider)
|
||||||
|
|
||||||
|
def test_delattr(self):
|
||||||
|
setattr(self.container, self.CustomString('test_attr'), self.provider)
|
||||||
|
delattr(self.container, self.CustomString('test_attr'))
|
||||||
|
with self.assertRaises(AttributeError):
|
||||||
|
self.container.test_attr
|
||||||
|
|
||||||
|
def test_set_provider(self):
|
||||||
|
self.container.set_provider(self.CustomString('test_attr'), self.provider)
|
||||||
|
self.assertIs(self.container.test_attr, self.provider)
|
||||||
|
|
||||||
|
def test_set_providers(self):
|
||||||
|
self.container.set_providers(**{self.CustomString('test_attr'): self.provider})
|
||||||
|
self.assertIs(self.container.test_attr, self.provider)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user