| Commit message (Expand) | Author | Age | Files | Lines |
| * | Lint using Ruff (#6371) | danieleades | 2023-02-19 | 1 | -10/+10 |
| * | Improve test coverage for multigraph class (#6101) | Alimi Qudirah | 2022-10-21 | 1 | -0/+3 |
| * | Update tests in base class and simple rename in convert.py (#5848) | Dan Schult | 2022-07-15 | 1 | -8/+50 |
| * | Fixed wrong dict factory usage on MultiDiGraph (#5456) | FabianBall | 2022-04-04 | 1 | -0/+16 |
| * | Add Mypy type checking infrastructure (#5127) | Ross Barnowski | 2021-11-17 | 1 | -1/+1 |
| * | Style changes (#5022) | Dan Schult | 2021-08-14 | 1 | -10/+2 |
| * | add special processing of `multigraph_input` upon graph init (#4823) | Dan Schult | 2021-05-27 | 1 | -0/+89 |
| * | Refactor testing utilities (#4829) | Jarrod Millman | 2021-05-26 | 1 | -8/+8 |
| * | TST: improve multigraph test coverage to 100% (#4340) | Ross Barnowski | 2020-11-12 | 1 | -0/+11 |
| * | Format w/ black | Jarrod Millman | 2020-07-10 | 1 | -87/+107 |
| * | Upgrade to Py36 syntax | Jarrod Millman | 2020-01-01 | 1 | -3/+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 | -2/+3 |
| * | PEP8 fixes | Jarrod Millman | 2019-10-18 | 1 | -6/+6 |
| * | PEP8 fixes to tests | Jarrod Millman | 2019-10-18 | 1 | -15/+15 |
| * | Replace nose.raises with pytest.raises context manager | Jarrod Millman | 2019-10-12 | 1 | -10/+10 |
| * | Remove unused imports | Jarrod Millman | 2019-10-12 | 1 | -3/+0 |
| * | Convert nose.tools.assert_* functions into asserts | Jarrod Millman | 2019-10-12 | 1 | -68/+68 |
| * | Fix multigraph checks | Stefan van der Walt | 2019-10-12 | 1 | -24/+32 |
| * | Use class methods for class setup/teardown | Stefan van der Walt | 2019-10-12 | 1 | -11/+12 |
| * | First round of pytest fixes | Stefan van der Walt | 2019-10-12 | 1 | -1/+1 |
| * | Pep8 fixes | Jarrod Millman | 2018-01-20 | 1 | -1/+1 |
| * | 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 | -22/+14 |
| * | Next attempt to meld graphviews with base classes (#2593) | Dan Schult | 2017-08-12 | 1 | -13/+27 |
| * | Allow more flexible multigraph add_edges_from options (#2519) | Dan Schult | 2017-07-17 | 1 | -6/+16 |
| * | Doc ordered graph classes (#2516) | Jarrod Millman | 2017-07-16 | 1 | -167/+168 |
| * | Move data structure to private names and replace with readonly structures (#2... | Dan Schult | 2017-06-26 | 1 | -30/+33 |
| * | Add graph view classes for nodes/edge/degrees (#2458) | Dan Schult | 2017-06-13 | 1 | -1/+7 |
| * | Fix tests failing because of ordering issues. | Valentin Lorentz | 2016-07-30 | 1 | -7/+8 |
| * | Fix add_path in tests for edge_subgraph | Dan Schult | 2016-02-07 | 1 | -14/+14 |
| * | Adds an edge-induced subgraph method for graphs. | Jeffrey Finkelstein | 2016-01-14 | 1 | -8/+87 |
| * | Merge pull request #1638 from MridulS/adjiter | Dan Schult | 2015-07-03 | 1 | -2/+2 |
| |\ |
|
| | * | Update adjacency_iter() method to adjacency() and remove adjacency_list() | Mridul Seth | 2015-07-03 | 1 | -2/+2 |
| * | | Make selfloop methods return iterator instead of list in MultiGraph class | Mridul Seth | 2015-07-02 | 1 | -2/+2 |
| |/ |
|
| * | Remove edges_iter, G.edges() now returns an iterator instead of list | Mridul Seth | 2015-06-17 | 1 | -7/+7 |
| * | Makes Graph.nodes() return iterator instead of list | Jeffrey Finkelstein | 2015-06-11 | 1 | -1/+1 |
| * | Allow .remove_edges_from() to work with 4-tuples (u,v,k,d) for multi(di)graph. | Dan Schult | 2012-06-20 | 1 | -1/+16 |
| * | Add tests to classes to cover missing cases. | Aric Hagberg | 2011-11-18 | 1 | -0/+18 |
| * | Split Graph class tests that rely on data structure or edge attributes. | Dan Schult | 2011-07-28 | 1 | -122/+103 |
| * | More imports cleanup and exceptions fixed. | Loïc Séguin-C. | 2011-02-10 | 1 | -2/+0 |
| * | Change subgraph to create a copy of the connectivity | dschult | 2010-03-05 | 1 | -23/+20 |
| * | Add documentation and adjust tests for remove_edge() change. | aric | 2009-10-16 | 1 | -6/+10 |
| * | Update docstrings... add default values for optional arguments | dschult | 2009-08-13 | 1 | -0/+11 |
| * | Merge attrgraph branch into trunk | aric | 2009-08-11 | 1 | -42/+122 |
| * | Merged multigraph-dict branch 1138:1161 into trunk. Addresses #225 | aric | 2009-02-27 | 1 | -28/+40 |
| * | Fix case in MultiGraph and MultiDiGraph where two | aric | 2009-01-12 | 1 | -0/+10 |
| * | Rename get_edge() to get_edge_data(). Now returns None as | aric | 2008-12-22 | 1 | -3/+4 |
| * | Unify tests and code in add_edges_from() for all classes. | dschult | 2008-12-02 | 1 | -2/+8 |
| * | Merged revisions 741-766,769-770,794-797,799,804-829,845-848,858-885 via svnm... | aric | 2008-11-03 | 1 | -0/+111 |