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 jayvdb
Recipients jayvdb, r.david.murray
Date 2016-10-03.00:23:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1475454195.42.0.455668765751.issue25699@psf.upfronthosting.co.za>
In-reply-to
Content
pyflakes does assume doctest run with a copy of the module scope.


However when there is an __all__, the module scope as seen by other modules 'should' be only items in __all__.  If a doctest is included in documentation, it 'should' only use names that are in __all__.

In addition, pyflakes has an outstanding feature request (https://bugs.launchpad.net/pyflakes/+bug/1178807/comments/8) that doctest run as if they are an independent module, and need to import everything that they use, so that each doctest is self-contained.

pyflakes can build support for both of those needs within the package.  No worries.  If you cant see a broader need for these, please close.
History
Date User Action Args
2016-10-03 00:23:15jayvdbsetrecipients: + jayvdb, r.david.murray
2016-10-03 00:23:15jayvdbsetmessageid: <1475454195.42.0.455668765751.issue25699@psf.upfronthosting.co.za>
2016-10-03 00:23:15jayvdblinkissue25699 messages
2016-10-03 00:23:13jayvdbcreate