All Questions
2 questions
2
votes
1
answer
2k
views
Python, namespace vs module with underscores
I'm developing a project that uses several independent modules, but all related to the same project.
However, I face this choice: module names with underscore vs. namespaces.
For example there is ...
8
votes
4
answers
4k
views
When to import names into the global namespace? (using x::y, from x import y etc.)
I've been programming in various languages for about 10 years now. And I still haven't figured out when it is a good idea to import something into the global namespace (using x::y in C++, from x ...