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, gdr@garethrees.org, 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 <1585866508.3.0.475429129862.issue17005@roundup.psfhosted.org>
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, gdr@garethrees.org, martin.panter, wim.glenn, Zahari.Dim, remi.lapeyre, gaborjbernat
2020-04-02 22:28:28pablogsalsetmessageid: <1585866508.3.0.475429129862.issue17005@roundup.psfhosted.org>
2020-04-02 22:28:28pablogsallinkissue17005 messages
2020-04-02 22:28:28pablogsalcreate