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.
This commit is contained in:
Pablo Galindo 2020-06-01 00:41:14 +01:00 committed by GitHub
parent 491a3d3a75
commit 2f172d8f15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 714 additions and 717 deletions

View file

@ -419,6 +419,7 @@
<Compile Include="getpass.py" />
<Compile Include="gettext.py" />
<Compile Include="glob.py" />
<Compile Include="graphlib.py" />
<Compile Include="gzip.py" />
<Compile Include="hashlib.py" />
<Compile Include="heapq.py" />