diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-05-31 23:41:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-31 23:41:14 (GMT) |
commit | 2f172d8f1525defe9bba4d49e967fdfc69151731 (patch) | |
tree | 9c4e81ae491e7ed6f12a2579859da1315a0a756c /Misc/NEWS.d | |
parent | 491a3d3a75b656c8317d8ce343aea767978b946c (diff) | |
download | cpython-2f172d8f1525defe9bba4d49e967fdfc69151731.zip cpython-2f172d8f1525defe9bba4d49e967fdfc69151731.tar.gz cpython-2f172d8f1525defe9bba4d49e967fdfc69151731.tar.bz2 |
bpo-17005: Move topological sort functionality to its own module (GH-20558)
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.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-05-31-23-32-36.bpo-17005.JlRUGB.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-05-31-23-32-36.bpo-17005.JlRUGB.rst b/Misc/NEWS.d/next/Library/2020-05-31-23-32-36.bpo-17005.JlRUGB.rst new file mode 100644 index 0000000..0fd01fb --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-05-31-23-32-36.bpo-17005.JlRUGB.rst @@ -0,0 +1,4 @@ +The topological sort functionality that was introduced initially in the +:mod:`functools` module has been moved to a new :mod:`graphlib` module to +better accommodate the new tools and keep the original scope of the +:mod:`functools` module. Patch by Pablo Galindo |