Hm this reminds me that the Python stdlib has grown a module for topological sorting fo a graph:
https://docs.python.org/3/library/graphlib.html
I haven't used it yet, I'd be curious if anyone has
replies(2):
This little library is packed with the following features:
- Building dependency graph from dependency data.
- Performing topological sort on the dependency graph.
- Generating dependence-free subsets for parallel processing.
- Cycle detection and cycle reporting.
https://docs.python.org/3/library/graphlib.html
I haven't used it yet, I'd be curious if anyone has
The purpose of adding it to the standard library was to implement linear MRO for classes: https://bugs.python.org/issue17005