Possible Duplicate:
Python import with name conflicts
I have a script file called email.py
in which I need to import the email
module from the Python standard library. Unfortunately, when I do an import email
in my email.py
file the email.py
file itself is imported.
How can I tell Python that I want to import the standard library package?
Cheers