Open
Description
after I dive to py3 using futurize, I find that my module name "test.py" will automaitcally be imported. I found out it's because the below code:
from future import standard_library
standard_library.install_aliases()
which write:
try:
import test
except ImportError:
pass
as implict relative import is allowed in py2, it imports my "test.py" instead of the standard test module