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 brett.cannon
Recipients benjamin.peterson, brett.cannon, exarkun
Date 2008-09-04.22:36:42
SpamBayes Score 7.35487e-07
Marked as misclassified No
Message-id <1220567803.84.0.868856417291.issue3780@psf.upfronthosting.co.za>
In-reply-to
Content
It sounds like you are trying to get around "once"/"default" rules to
see all warnings raised. Why can't you use catch_warnings() and do
``simplefilter("always")`` or use "error"? Otherwise you can force the
importing and use of the pure Python implementation of warnings if you
really want to continue to use your hacked version of warn_explicit (see
test_warnings on how to control whether the C implementation gets used
or not).
History
Date User Action Args
2008-09-04 22:36:43brett.cannonsetrecipients: + brett.cannon, exarkun, benjamin.peterson
2008-09-04 22:36:43brett.cannonsetmessageid: <1220567803.84.0.868856417291.issue3780@psf.upfronthosting.co.za>
2008-09-04 22:36:43brett.cannonlinkissue3780 messages
2008-09-04 22:36:42brett.cannoncreate