diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-01-23 15:29:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 15:29:52 (GMT) |
commit | 99e6c260d60655f3d2885af545cbc220b808d492 (patch) | |
tree | fac1284f6a70bdc3f4b03aa7dafeb6761bab1cbc /Misc | |
parent | 79f89e6e5a659846d1068e8b1bd8e491ccdef861 (diff) | |
download | cpython-99e6c260d60655f3d2885af545cbc220b808d492.zip cpython-99e6c260d60655f3d2885af545cbc220b808d492.tar.gz cpython-99e6c260d60655f3d2885af545cbc220b808d492.tar.bz2 |
bpo-17005: Add a class to perform topological sorting to the standard library (GH-11583)
Co-Authored-By: Tim Peters <tim.peters@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-01-17-00-00-58.bpo-17005.nTSxsy.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-01-17-00-00-58.bpo-17005.nTSxsy.rst b/Misc/NEWS.d/next/Core and Builtins/2020-01-17-00-00-58.bpo-17005.nTSxsy.rst new file mode 100644 index 0000000..e533643 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-01-17-00-00-58.bpo-17005.nTSxsy.rst @@ -0,0 +1,3 @@ +Add :class:`functools.TopologicalSorter` to the :mod:`functools` module to +offers functionality to perform topological sorting of graphs. Patch by +Pablo Galindo, Tim Peters and Larry Hastings. |