| Commit message (Expand) | Author | Age | Files | Lines |
| * | Improve test coverage for digraph class (#6130) | Alimi Qudirah | 2022-10-27 | 1 | -0/+4 |
| * | Attempt to reverse slowdown from hasattr needed for cached_property (#5836) | Dan Schult | 2022-07-16 | 1 | -3/+19 |
| * | Use isort with pre-commit to enforce import guidelines (#5659) | Mridul Seth | 2022-06-02 | 1 | -2/+3 |
| * | Cache edges, degree, adj properties of Graph classes (#5614) | Dan Schult | 2022-05-11 | 1 | -0/+9 |
| * | Refactor testing utilities (#4829) | Jarrod Millman | 2021-05-26 | 1 | -2/+2 |
| * | Format w/ black | Jarrod Millman | 2020-07-10 | 1 | -39/+45 |
| * | Add method to clear edges only (#3477) | Paolo Lammens | 2020-07-05 | 1 | -0/+21 |
| * | Upgrade to Py36 syntax | Jarrod Millman | 2020-01-01 | 1 | -2/+2 |
| * | Remove shebang from non-executables | Jarrod Millman | 2019-11-11 | 1 | -1/+0 |
| * | avoid duplicate tests due to imports (#3684) | Dan Schult | 2019-10-24 | 1 | -7/+5 |
| * | Enable ThinGraph tests (#3681) | Jarrod Millman | 2019-10-23 | 1 | -34/+34 |
| * | PEP8 fixes | Jarrod Millman | 2019-10-18 | 1 | -4/+4 |
| * | Replace nose.raises with pytest.raises context manager | Jarrod Millman | 2019-10-12 | 1 | -12/+11 |
| * | Remove unused imports | Jarrod Millman | 2019-10-12 | 1 | -3/+0 |
| * | Convert nose.tools.assert_* functions into asserts | Jarrod Millman | 2019-10-12 | 1 | -86/+86 |
| * | Fix graph/digraph tests | Stefan van der Walt | 2019-10-12 | 1 | -33/+43 |
| * | Use class methods for class setup/teardown | Stefan van der Walt | 2019-10-12 | 1 | -20/+21 |
| * | First round of pytest fixes | Stefan van der Walt | 2019-10-12 | 1 | -2/+2 |
| * | change variable names to avoid kwargs clobber (#2824) | Dan Schult | 2018-01-10 | 1 | -1/+1 |
| * | Simplify base classes. (#2604) | Dan Schult | 2017-08-12 | 1 | -3/+3 |
| * | Next attempt to meld graphviews with base classes (#2593) | Dan Schult | 2017-08-12 | 1 | -3/+1 |
| * | Ensure `digraph.reverse` respects hashable objects (#2489) | Jarrod Millman | 2017-06-28 | 1 | -131/+150 |
| * | Move data structure to private names and replace with readonly structures (#2... | Dan Schult | 2017-06-26 | 1 | -41/+25 |
| * | Add graph view classes for nodes/edge/degrees (#2458) | Dan Schult | 2017-06-13 | 1 | -11/+4 |
| * | Update predecessors/successors in edge subgraphdigraph-edge-subgraph | Jeffrey Finkelstein | 2017-02-26 | 1 | -0/+14 |
| * | Base class tests | Aric Hagberg | 2016-07-31 | 1 | -7/+7 |
| * | Extra tests | Pim Otte | 2016-07-30 | 1 | -0/+4 |
| * | 2205: Adding support for specific data retrival of edges through in_edges (Di... | Pim Otte | 2016-07-30 | 1 | -0/+10 |
| * | Adds an edge-induced subgraph method for graphs. | Jeffrey Finkelstein | 2016-01-14 | 1 | -0/+19 |
| * | Remove degree_iter(),now degree() returns an integer for single node and iter... | Mridul Seth | 2015-06-27 | 1 | -66/+30 |
| * | Merge pull request #1589 from MridulS/succprediter | Dan Schult | 2015-06-17 | 1 | -10/+10 |
| |\ |
|
| | * | Remove successors_iter() and predecessors_iter(). G.successors() and G.predec... | Mridul Seth | 2015-06-12 | 1 | -10/+10 |
| * | | Remove edges_iter, G.edges() now returns an iterator instead of list | Mridul Seth | 2015-06-17 | 1 | -15/+16 |
| * | | Fix big for iterator input for digraph.degree | Dan Schult | 2015-06-16 | 1 | -0/+7 |
| |/ |
|
| * | Change node lookups to G.node instead of G.adj | Dan Schult | 2012-02-05 | 1 | -0/+4 |
| * | Split Graph class tests that rely on data structure or edge attributes. | Dan Schult | 2011-07-28 | 1 | -77/+74 |
| * | Change degree() and friends to accept weight= keyword instead of weighted= | Dan Schult | 2011-06-18 | 1 | -6/+14 |
| * | DiGraph and MultiDigraph reverse(copy=True) methods don't make a proper copy ... | Aric Hagberg | 2011-06-09 | 1 | -0/+16 |
| * | More imports cleanup and exceptions fixed. | Loïc Séguin-C. | 2011-02-10 | 1 | -2/+0 |
| * | Add reciprocal option in to_undirected(). | Aric Hagberg | 2010-09-28 | 1 | -2/+7 |
| * | Remove iteritems 2ism and add test. | aric | 2010-08-07 | 1 | -0/+12 |
| * | Merging py3k-1.2 branch into trunk. Addresses #348 | loicseguin | 2010-08-02 | 1 | -3/+3 |
| * | Remove with_labels keyword from *degree() methods. | aric | 2010-04-15 | 1 | -9/+9 |
| * | Merge attrgraph branch into trunk | aric | 2009-08-11 | 1 | -50/+40 |
| * | Add in_edges_iter() and in_edges() to DiGraph and MultiDiGraph | aric | 2008-12-21 | 1 | -4/+43 |
| * | Unify tests and code in add_edges_from() for all classes. | dschult | 2008-12-02 | 1 | -5/+8 |
| * | Merged revisions 741-766,769-770,794-797,799,804-829,845-848,858-885 via svnm... | aric | 2008-11-03 | 1 | -0/+185 |