Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e9a305 + d012a66 commit 979b4cdCopy full SHA for 979b4cd
docs/writing/structure.rst
@@ -441,8 +441,8 @@ bad practice. **Using** ``import *`` **makes code harder to read and makes
441
dependencies less compartmentalized**.
442
443
Using ``from modu import func`` is a way to pinpoint the function you want to
444
-import and put it in the global namespace. While much less harmful than ``import
445
-*`` because it shows explicitly what is imported in the global namespace, its
+import and put it in the local namespace. While much less harmful than ``import
+*`` because it shows explicitly what is imported in the local namespace, its
446
only advantage over a simpler ``import modu`` is that it will save a little
447
typing.
448
0 commit comments