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 pitrou
Recipients emptysquare, eric.snow, grahamd, ncoghlan, pitrou
Date 2015-07-03.10:45:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1435920340.05.0.437910037862.issue24554@psf.upfronthosting.co.za>
In-reply-to
Content
From a quick look at the PyInterpreterState, stuff that may be risky to rely on:
- mutable data from the sys module (mainly import-related data: sys.path, sys.meta_path, etc.)
- codecs registry metadata

Of course third-party modules (C extensions) may key additional data on the current interpreter, but I can't think of any stdlib module that does.
History
Date User Action Args
2015-07-03 10:45:40pitrousetrecipients: + pitrou, ncoghlan, grahamd, eric.snow, emptysquare
2015-07-03 10:45:40pitrousetmessageid: <1435920340.05.0.437910037862.issue24554@psf.upfronthosting.co.za>
2015-07-03 10:45:40pitroulinkissue24554 messages
2015-07-03 10:45:39pitroucreate