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 Arfrever, eric.araujo, eric.snow, ncoghlan, pitrou
Date 2012-04-26.16:07:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335456472.16.0.318855565733.issue14673@psf.upfronthosting.co.za>
In-reply-to
Content
@antoine - I wondered about that.  In the end I got something up to start with.

The list of fields in sys.implementation may change over time, unlike sys.version_info, et al.  However, during interpreter execution, I would expect that neither that list nor the contents would change.  The variability would only be between implementations and between versions of those implementations.

A dict would imply to me that it might vary during interpreter execution.  An immutable type makes it clear to me that it won't be changing.  I'm fine with a dict, though, if you think that's better.  Perhaps a dictproxy?
History
Date User Action Args
2012-04-26 16:07:52eric.snowsetrecipients: + eric.snow, ncoghlan, pitrou, eric.araujo, Arfrever
2012-04-26 16:07:52eric.snowsetmessageid: <1335456472.16.0.318855565733.issue14673@psf.upfronthosting.co.za>
2012-04-26 16:07:51eric.snowlinkissue14673 messages
2012-04-26 16:07:51eric.snowcreate