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 loewis
Recipients Robin.Schreiber, loewis, rhettinger
Date 2012-08-17.08:24:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1345191893.94.0.912731069487.issue15668@psf.upfronthosting.co.za>
In-reply-to
Content
Sure; I've mentored Robin throughout the summer with this, and this is his GSoC project.

As for the specific change: this is primarily to support PEP 3121, and allowing multiple interpreters to use a module without fear of global variables being shared across interpreters. 

In the current implementation, the Random type would be shared across all interpreters, with the change, each interpreter gets its own copy of the Random type. For that, the type needs to become a heap type, which is best done with the PEP 384 API (even though ABI stability is irrelevant for the random module).
History
Date User Action Args
2012-08-17 08:24:54loewissetrecipients: + loewis, rhettinger, Robin.Schreiber
2012-08-17 08:24:53loewissetmessageid: <1345191893.94.0.912731069487.issue15668@psf.upfronthosting.co.za>
2012-08-17 08:24:53loewislinkissue15668 messages
2012-08-17 08:24:52loewiscreate