Re: Calling function from a string

2008-12-08 Thread Steven D'Aprano
On Mon, 08 Dec 2008 14:29:01 -0800, Chris Rebert wrote: > On Mon, Dec 8, 2008 at 2:23 PM, Robert Dailey <[EMAIL PROTECTED]> > wrote: >> Hi, >> >> I have a string representing the name of a function in Python 3.0. How >> can I call the function name represented by this string *without* >> creating

Re: Calling function from a string

2008-12-08 Thread Chris Rebert
On Mon, Dec 8, 2008 at 2:23 PM, Robert Dailey <[EMAIL PROTECTED]> wrote: > Hi, > > I have a string representing the name of a function in Python 3.0. How > can I call the function name represented by this string *without* > creating a mapping? Assuming the function is within scope: return_val = v

Calling function from a string

2008-12-08 Thread Robert Dailey
Hi, I have a string representing the name of a function in Python 3.0. How can I call the function name represented by this string *without* creating a mapping? -- http://mail.python.org/mailman/listinfo/python-list