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 flox
Recipients amaury.forgeotdarc, barry, benjamin.peterson, brian.curtin, eric.araujo, esam, ezio.melotti, flox, jcea, pitrou, rhettinger
Date 2010-03-17.12:28:26
SpamBayes Score 3.4120006e-08
Marked as misclassified No
Message-id <1268828908.15.0.609793830314.issue7092@psf.upfronthosting.co.za>
In-reply-to
Content
> Checking the pybsddb 4.8.4devel with current trunk I still see this:

It is because the "test_early_close" module calls resetwarnings().
It defeats the filter in the "threading" module.

You may change the test case with a context manager:

  with warnings.catch_warnings():
      warnings.resetwarnings()
      # test the warning
History
Date User Action Args
2010-03-17 12:28:28floxsetrecipients: + flox, barry, rhettinger, jcea, amaury.forgeotdarc, pitrou, benjamin.peterson, ezio.melotti, eric.araujo, brian.curtin, esam
2010-03-17 12:28:28floxsetmessageid: <1268828908.15.0.609793830314.issue7092@psf.upfronthosting.co.za>
2010-03-17 12:28:26floxlinkissue7092 messages
2010-03-17 12:28:26floxcreate