I have a custom module in one of the directories in my PYTHONPATH with the same name as one of the standard library modules, so that when I import module_name, that module gets loaded. If I want to use the original standard library module, is there any way to force Python to import from the standard library rather than from the PYTHONPATH directory, short of renaming the custom module and changing every reference to point to the new name?

link|improve this question

What's so bad about renaming your module? – S.Lott Jun 1 '10 at 18:06
It would just involve making changes to dozens of files. It sounds like it's the best solution though. – jrdioko Jun 1 '10 at 18:46
You have grep, so it shouldn't be too hard to find each one and fix them. – S.Lott Jun 1 '10 at 21:15
Please also add to the equation that you might have a module in your program, which in a later version conflicts with a new standard module. With that in mind I think it´s a valid question to write future proof code. – Kent Apr 23 at 12:16
feedback

3 Answers

up vote 4 down vote accepted

The ideal solution would be to rename your module to something not in the standard library.

You can also switch absolute imports on if you're on Python 2.5+:

from __future__ import absolute_import
link|improve this answer
How would I use relative imports to grab the standard library version? – jrdioko Jun 1 '10 at 18:10
I misunderstood your question, edited answer. – Luper Rouch Jun 1 '10 at 18:19
This won't actually help? – Matt Joiner Mar 18 '11 at 13:41
feedback

Don't.

If you have accidentally chosen a standard library module name, change your module name to end the conflict.

link|improve this answer
This is probably the best solution, both for not causing confusion in visiting coders, and the fact that the behaviour importing a module that wasn't already a relative import won't change with absolute imports turned on. – Matt Joiner Mar 18 '11 at 13:44
feedback

You can select the module you want to import with the imp module:

import imp
mymodule = imp.load_module(name, file, pathname, description) 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.