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 ncoghlan
Recipients brett.cannon, eric.snow, martin.panter, ncoghlan, wolma
Date 2016-07-17.12:50:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468759826.23.0.242060350814.issue27487@psf.upfronthosting.co.za>
In-reply-to
Content
Running pre-imported top level packages like "runpy" or "site" with "-m" is supported behaviour, so that shouldn't emit a warning. ("python -m site" in particular is a debugging tool used to print out the default sys.path configuration)

Otherwise, the warning mostly looks good to me, except I'd suggest either dropping the word "any" from "any parent packages", or else replacing it with the word "all" (since the key point to be conveyed is that by the time the module starts executing and this check is made, all the parent packages have already been imported, thus triggering their side effects, if any).
History
Date User Action Args
2016-07-17 12:50:26ncoghlansetrecipients: + ncoghlan, brett.cannon, eric.snow, martin.panter, wolma
2016-07-17 12:50:26ncoghlansetmessageid: <1468759826.23.0.242060350814.issue27487@psf.upfronthosting.co.za>
2016-07-17 12:50:26ncoghlanlinkissue27487 messages
2016-07-17 12:50:26ncoghlancreate