show/hide this revision's text 2 added code sample on how to pass environment explicitly

In this example, you can simply hand over functions as objects to the methods in C1:

>>> class C1(object):
>>>    def eval(self, x):
>>>        x()
>>>
>>> def f2(): print "go f2"
>>> c = C1()
>>> c.eval(f2)
go f2

In Python, you can pass functions and classes to other methods and invoke/create them there.

If you want to actually evaluate a code string, you have to specify the environment, as already mentioned by Thomas.

(I hope I interpreted your comment to your question correctly.

Your module from above, slightly changed:

## File 1
def f1():  print "go f1!"

class C1(object):
    def do_eval(self, x, e_globals = globals(), e_locals = locals()):
        eval(x, e_globals, e_locals)

Now, in the interactive interpreter:

>>> def f2():
>>>    print "go f2!"
>>> from file1 import *    # 1
>>> C1().do_eval("f2()")   # 2
NameError: name 'f2' is not defined

>>> C1().do_eval("f2()", globals(), locals()) #3
go f2!
>>> C1().do_eval("f1()", globals(), locals()) #4
go f1!

Some annotations

  1. Here, we insert all objects from file1 into this module's namespace
  2. f2 is not in the namespace of file1, therefore we get a NameError
  3. Now we pass the environment explictly, and the code can be evaluated
  4. f1 is in the namespace of this module, because we imported it

Edit: Added code sample on how to explicitly pass environment for eval.

show/hide this revision's text 1

In this example, you can simply hand over functions as objects to the methods in C1:

>>> class C1(object):
>>>    def eval(self, x):
>>>        x()
>>>
>>> def f2(): print "go f2"
>>> c = C1()
>>> c.eval(f2)
go f2

In Python, you can pass functions and classes to other methods and invoke/create them there.

If you want to actually evaluate a code string, you have to specify the environment, as already mentioned by Thomas.

(I hope I interpreted your comment to your question correctly.)