I have a 2 python files. One is trying to import the second. My problem is that the second is named math.py. I can not rename it. When I attempt to call a function that is l
You could use relative imports:
from . import math
http://docs.python.org/tutorial/modules.html#intra-package-references