Hi, thanks for your reply!
make sure you set the environment variable PYTHONHASHSEED=random, then > run your tests repeatedly. This variable produces a random hash seed > for dictionaries and will smoke out dictionary-ordering based bugs more > clearly so that you can localize the source of it. If this reproduces > the issue in Py2K you'll know you have a dict ordering bug rather than > something to do with Py3K. > Setting that indeed reproduces the bug in Python 2.7. I do, however, not understand what this has to to with dictionary ordering, because I am not comparing whole dictionaries but only single entries, accessed by their key. Can you elaborate a bit more what you think the issue is? Cheers, Nik -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/d/optout.
