It is recommended to not to use import * in python. Can anyone please share the reason for that, so that I can avoid it doing next time.
Thanks and Regards
|
It is recommended to not to use import * in python. Can anyone please share the reason for that, so that I can avoid it doing next time. Thanks and Regards |
|||||||||||||||
|
|
|||||||||
|
|
|
|||||||||||||
|
|
You don't pass Since Python lacks an "include" statement, and the The Also, it has a concrete possibility of hiding bugs.
Now, if the bar module has any of the " Don't misunderstand me: if the I think in medium-to-big projects, or small ones with several contributors, a minimum of hygiene is needed in terms of statical analysis -- running at least pyflakes or even better a properly configured pylint -- to catch several kind of bugs before they happen. Of course since this is python -- feel free to break rules, and to explore -- but be wary of projects that could grow tenfold, if the source code is missing discipline it will be a problem. |
|||||||
|
|
http://docs.python.org/tutorial/modules.html
|
|||
|
|
|
That is because you are polluting the namespace. You will import all the funtions and classes in your own namespace, which may clash with the functions you define yourself. Furthermore, I think using a qualified name is more clear for the maintenance task; you see on the code line itself where a function comes from, so you can check out the docs much more easily. In module foo:
In your code:
|
|||||
|
|
say you have the following code in a module called foo:
and then in your own module you have:
You now have a difficult-to-debug module that looks like it has lxml's etree in it, but really has ElementTree instead. |
|||
|
|