-
-
Notifications
You must be signed in to change notification settings - Fork 32k
bpo-45624: make test_graphlib not depend on the iteration order of sets #29233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
the current test depended on integer sets being iterated on in a certain fixed order. That order is different on PyPy (insertion based) and could change in CPython in the future in theory. Make the test robust against a different iteration order by sorting.
Sorry @cfbolz and @ambv, I had trouble checking out the |
…ts (pythonGH-29233) the current test depended on integer sets being iterated on in a certain fixed order. That order is different on PyPy (insertion based) and could change in CPython in the future in theory. Make the test robust against a different iteration order by sorting. (cherry picked from commit 7401694) Co-authored-by: Carl Friedrich Bolz-Tereick <[email protected]>
GH-29292 is a backport of this pull request to the 3.9 branch. |
…ts (pythonGH-29233) the current test depended on integer sets being iterated on in a certain fixed order. That order is different on PyPy (insertion based) and could change in CPython in the future in theory. Make the test robust against a different iteration order by sorting. (cherry picked from commit 7401694) Co-authored-by: Carl Friedrich Bolz-Tereick <[email protected]>
GH-29293 is a backport of this pull request to the 3.10 branch. |
…ts (GH-29233) (GH-29292) the current test depended on integer sets being iterated on in a certain fixed order. That order is different on PyPy (insertion based) and could change in CPython in the future in theory. Make the test robust against a different iteration order by sorting. (cherry picked from commit 7401694) Co-authored-by: Carl Friedrich Bolz-Tereick <[email protected]>
…ts (GH-29233) (GH-29293) the current test depended on integer sets being iterated on in a certain fixed order. That order is different on PyPy (insertion based) and could change in CPython in the future in theory. Make the test robust against a different iteration order by sorting. (cherry picked from commit 7401694) Co-authored-by: Carl Friedrich Bolz-Tereick <[email protected]>
|
the current test depended on integer sets being iterated on in a certain
fixed order. That order is different on PyPy (insertion based) and could
change in CPython in the future in theory. Make the test robust against
a different iteration order by sorting.
https://bugs.python.org/issue45624