This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pablogsal
Recipients Zahari.Dim, belopolsky, christian.heimes, eric.smith, gaborjbernat, [email protected], lukasz.langa, martin.panter, orsenthil, pablogsal, remi.lapeyre, rhettinger, terry.reedy, tim.peters, tshepang, vstinner, wim.glenn
Date 2020-04-02.22:28:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
Is also notable to mention that you can also provide the graph as a dictionary to the constructor:

>>> graph = {D: {B, C}, C: {A}, B: {A}, A:{object}}
>>> ts = TopologicalSorter(graph)
History
Date User Action Args
2020-04-02 22:28:28pablogsalsetrecipients: + pablogsal, tim.peters, rhettinger, terry.reedy, belopolsky, orsenthil, vstinner, eric.smith, christian.heimes, lukasz.langa, tshepang, [email protected], martin.panter, wim.glenn, Zahari.Dim, remi.lapeyre, gaborjbernat
2020-04-02 22:28:28pablogsalsetmessageid: <[email protected]>
2020-04-02 22:28:28pablogsallinkissue17005 messages
2020-04-02 22:28:28pablogsalcreate