mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-21 17:16:46 +03:00
Update providers.pyx
allow string imports outside of packages
This commit is contained in:
parent
abf2a2577c
commit
7bed1aed5d
|
@ -5034,7 +5034,7 @@ def _resolve_calling_module():
|
|||
|
||||
def _resolve_calling_package_name():
|
||||
module = _resolve_calling_module()
|
||||
return module.__package__
|
||||
return getattr(module, "__package__", None)
|
||||
|
||||
|
||||
cpdef _copy_parent(object from_, object to, dict memo):
|
||||
|
|
Loading…
Reference in New Issue
Block a user