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 Carl.Friedrich.Bolz
Recipients Carl.Friedrich.Bolz
Date 2021-10-27.11:04:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1635332648.37.0.340121805085.issue45624@roundup.psfhosted.org>
In-reply-to
Content
here's the traceback running on pypy3.9-alpha:

======================================================================
FAIL: test_simple_cases (test.test_graphlib.TestTopologicalSort)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/cfbolz/projects/small-commits-pypy/lib-python/3/test/test_graphlib.py", line 39, in test_simple_cases
    [(3, 5, 7), (11, 8), (2, 10, 9)],
  File "/home/cfbolz/projects/small-commits-pypy/lib-python/3/test/test_graphlib.py", line 19, in _test_graph
    self.assertEqual(list(static_order_with_groups(ts)), list(expected))
AssertionError: Lists differ: [(3, 7, 5), (8, 11), (2, 9, 10)] != [(3, 5, 7), (11, 8), (2, 10, 9)]

First differing element 0:
(3, 7, 5)
(3, 5, 7)

- [(3, 7, 5), (8, 11), (2, 9, 10)]
+ [(3, 5, 7), (11, 8), (2, 10, 9)]
History
Date User Action Args
2021-10-27 11:04:08Carl.Friedrich.Bolzsetrecipients: + Carl.Friedrich.Bolz
2021-10-27 11:04:08Carl.Friedrich.Bolzsetmessageid: <1635332648.37.0.340121805085.issue45624@roundup.psfhosted.org>
2021-10-27 11:04:08Carl.Friedrich.Bolzlinkissue45624 messages
2021-10-27 11:04:08Carl.Friedrich.Bolzcreate