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 eric.snow
Recipients eric.snow
Date 2019-05-07.16:09:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557245373.48.0.875552675923.issue36835@roundup.psfhosted.org>
In-reply-to
Content
Currently the warnings module uses runtime-global state (PyRuntimeState.warnings).  That should be moved down to per-interpreter state.  There are three possible places:

1. the module's "module state"
2. the module's __dict__
3. PyInterpreterState.warnings (new)

I have a patch for the first option.
History
Date User Action Args
2019-05-07 16:09:33eric.snowsetrecipients: + eric.snow
2019-05-07 16:09:33eric.snowsetmessageid: <1557245373.48.0.875552675923.issue36835@roundup.psfhosted.org>
2019-05-07 16:09:33eric.snowlinkissue36835 messages
2019-05-07 16:09:33eric.snowcreate