summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.9.rst
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-01-23 15:29:52 (GMT)
committerGitHub <noreply@github.com>2020-01-23 15:29:52 (GMT)
commit99e6c260d60655f3d2885af545cbc220b808d492 (patch)
treefac1284f6a70bdc3f4b03aa7dafeb6761bab1cbc /Doc/whatsnew/3.9.rst
parent79f89e6e5a659846d1068e8b1bd8e491ccdef861 (diff)
downloadcpython-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 'Doc/whatsnew/3.9.rst')
-rw-r--r--Doc/whatsnew/3.9.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index d9c545a..a6e938f 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -166,6 +166,13 @@ ftplib
if the given timeout for their constructor is zero to prevent the creation of
a non-blocking socket. (Contributed by Dong-hee Na in :issue:`39259`.)
+functools
+---------
+
+Add the :class:`functools.TopologicalSorter` class to offer functionality to perform
+topological sorting of graphs. (Contributed by Pablo Galindo, Tim Peters and Larry
+Hastings in :issue:`17005`.)
+
gc
--