Also, remember that since the latter functions will always overwrite
the first, you can just reverse the order of the imports:

from package2 import *
from package1 import *

This should preserve the functions of package1 over the other ones.
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to