I have a module my_module
that it is sourced (imported) by lots of files using:
from my_module import *
Being inside the module, can I know which file imported this module ?
I would like to know the filename:line_no which made this import.
so code I require is:
my_module.py
print "This module is currently imported from: file:line_no = %s:%s" % what_in_here??