List:
Is it possible to determine the name of the module that invoked import from within the imported module?
Thanks,
Eric
--
http://mail.python.org/mailman/listinfo/python-list
Peter:
Thanks for the reply. Consider the following situation:
A set of variable names is defined along with a list of possible values
for each. A second set of variable names is defined along
with an _expression_ for generating a value for each. For each
possible permutation of variables
I found a builtin function called "execfile" that seems to suite my
needs quite well. The import function is less applicable.
Thanks for your time.On 3/21/06, Steve Holden <[EMAIL PROTECTED]> wrote:
Eric White wrote:> Peter:>> Thanks for the reply. Consider the follow