Why bother to limit the types imported from a python package?
- by Fast Fish
When using many IDEs that support autocompletion with Python, things like this will show warnings, which I find annoying:
from eventlet.green.httplib import BadStatusLine
When switching to:
rom eventlet.green.httplib *
The warnings go away. What's the benefit to limiting imports to a specific set of types you'll use? Is the parsing faster?…