I have a problem. Here's a simplified version of what I'm doing: I have functions a() and b() in a module called 'mod'. b() calls a().
So now, I have this program:
from mod import *
def a():
blahblah
b()
The problem being, b() is calling the a() that's in mod, not the new
a() that I want to replace it. (Both a()'s have identical function
headers, in case that matters.) How can I fix this?
Thanks for any help.
--
http://mail.python.org/mailman/listinfo/python-list
