Comment by nerdponx
3 days ago
I used it to build a (now permanently unfinished) lightweight DAG runner that uses only the Python standard library, with the intention that you can just copy the .py file into a project and use it without installing anything other than Python on your system. I think it might be of niche use to some people, but I personally wasn't even dogfooding it, I was just scratching an itch.
The purpose of adding it to the standard library was to implement linear MRO for classes: https://bugs.python.org/issue17005
I built one too! I started with networkx but migrated to graphlib with python 3.9.
I run it in production for many customers. It's great to have this in the std lib.