summaryrefslogtreecommitdiffstats
path: root/Lib/graphlib.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-45359: Support TopologicalSorter type subscript (GH-28714)Jacob Hayes2021-12-081-0/+4
| | | | | | | | | | | | * Support TopologicalSorter type subscript * 📜🤖 Added by blurb_it. * Add TopologicalSorter to GenericAlias tests * Update Misc/NEWS.d/next/Library/2021-10-03-22-27-35.bpo-45359.LX_uxe.rst Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Batuhan Taskaya <isidentical@gmail.com>
* [codemod] Fix non-matching bracket pairs (GH-28473)Mohamad Mansour2021-09-211-1/+1
| | | | | Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* [doc] Fix typo in the graphlib docs (GH-22661)linchiwei1232020-10-121-3/+4
| | | Automerge-Triggered-By: @pablogsal
* bpo-17005: Move topological sort functionality to its own module (GH-20558)Pablo Galindo2020-05-311-0/+245
The topological sort functionality that was introduced initially in the functools module has been moved to a new graphlib module to better accommodate the new tools and keep the original scope of the functools module.