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 rhettinger
Recipients ethan.furman, georg.brandl, josch, rhettinger
Date 2014-10-14.01:01:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1413248468.13.0.40279296857.issue22621@psf.upfronthosting.co.za>
In-reply-to
Content
> some libraries I use rely on the order of items in Python dictionaries for their output

Your choices are:

* create a custom hash function using __hash__
* or sort the output from within Python
* or sort the output externally, prior to diffing.

> From my perspective it would be nice to just be able 
> to set PYTHONHASH32BIT 

The odds of this being accepted are almost zero.
We're moving in the opposite direction of randomizing
the hash from run-to-run.
History
Date User Action Args
2014-10-14 01:01:08rhettingersetrecipients: + rhettinger, georg.brandl, ethan.furman, josch
2014-10-14 01:01:08rhettingersetmessageid: <1413248468.13.0.40279296857.issue22621@psf.upfronthosting.co.za>
2014-10-14 01:01:08rhettingerlinkissue22621 messages
2014-10-14 01:01:07rhettingercreate