This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Strijker
Recipients Strijker, docs@python
Date 2018-11-27.16:43:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543337036.72.0.788709270274.issue35329@psf.upfronthosting.co.za>
In-reply-to
Content
In the documentation I noticed "from Package import specific_submodule". I recon package should be all lowercase in accordance with pep8.
(https://www.python.org/dev/peps/pep-0008/#package-and-module-names)

It may be far from the most important bug ever, but it's my first bug reported, and gotta start small... :-)

https://docs.python.org/3/tutorial/modules.html#importing-from-a-package

6.4.1. Importing * From a Package
...
Remember, there is nothing wrong with using from Package import specific_submodule! In fact, this is the recommended notation unless the importing module needs to use submodules with the same name from different packages.
History
Date User Action Args
2018-11-27 16:43:56Strijkersetrecipients: + Strijker, docs@python
2018-11-27 16:43:56Strijkersetmessageid: <1543337036.72.0.788709270274.issue35329@psf.upfronthosting.co.za>
2018-11-27 16:43:56Strijkerlinkissue35329 messages
2018-11-27 16:43:56Strijkercreate