On Aug 1, 11:22 am, [EMAIL PROTECTED] wrote:
> The following bit of code will allow an instance member to
> be called by reference. How can I map a string (e.g.
> "hello1" or "Foo.hello1" to a the instance member?
>
> class Foo:
> def hello1(self, p):
> print 'hello1', p
> def hell
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
wrote:
> The following bit of code will allow an instance member to
> be called by reference. How can I map a string (e.g.
> "hello1" or "Foo.hello1" to a the instance member?
>
> class Foo:
> def hello1(self, p):
> print 'hello1', p