A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://mail.python.org/pipermail/python-dev/2011-April/110938.html below:

[Python-Dev] Allowing import star with namespaces

[Python-Dev] Allowing import star with namespaces [Python-Dev] Allowing import star with namespacesEthan Furman ethan at stoneleaf.us
Tue Apr 26 20:03:52 CEST 2011
Brendan Moloney wrote:
> We all know that doing:
> 
> --> from pkg import *
> 
> is bad because it obliterates the 'pkg' namespace.

The strongest reason for not doing this is that it pollutes the current 
namespace, not that it obliterates the 'pkg' namespace.

> So why not allow something like:
> 
> --> import pkg.*


How would that be different from

--> import pkg

?

If you want convenience for interactive work, you can always:

--> import pkg
--> from pkg import *

and then have the best (and worst!) of both techniques.

~Ethan~
More information about the Python-Dev mailing list

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4