Hacker News new | past | comments | ask | show | jobs | submit login

That depends on the order in which the values are are returned by items(), which you likely do not want.

    >>> tuple({1:2,3:4}.items()) == tuple({3:4,1:2}.items())
    False
    >>> frozenset({1:2,3:4}.items()) == frozenset({3:4,1:2}.items())
    True



Good point




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: