Для примера: есть 2 файла
a.py
import b
...
b.py
print('???') # here I want to figure out which module called me
# this module could be imported from different modules/places not even from expected places.
# there is no certain purpose to use such information, just try to find out is it possible.
Вопрос:
Возможно ливыяснить имя модуля, который делает импорт fisrt на другом модуле?
PS:
Импортировать патч как здесь не вариант. b.py
можно импортировать в сторонние модули отдельно.