diff options
author | Jarrod Millman <jarrod.millman@gmail.com> | 2019-11-08 23:31:49 -0800 |
---|---|---|
committer | Jarrod Millman <jarrod.millman@gmail.com> | 2019-11-11 13:39:06 -0800 |
commit | 89daa927a0135a79cc69a75a3c89202158fa2ca7 (patch) | |
tree | 4a1d775a0f1ba33b93dd5c1e65ef140d0d4b12ae /networkx/algorithms/tree/mst.py | |
parent | 857aa81ead611dd05c7445b53bd128131033d50e (diff) | |
download | networkx-89daa927a0135a79cc69a75a3c89202158fa2ca7.tar.gz |
Remove boiler plate from top of modules
The copyright and author stuff is not necessary, out-of-date,
and inconsistent. It takes up visual space and is a pain to
police everyone doing the same thing on the top of the module.
Git handles authorship in a comprehensive and authoritative way.
The LICENSE.txt file applies to all project code.
Diffstat (limited to 'networkx/algorithms/tree/mst.py')
-rw-r--r-- | networkx/algorithms/tree/mst.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/networkx/algorithms/tree/mst.py b/networkx/algorithms/tree/mst.py index e77a0d9f..881c14c2 100644 --- a/networkx/algorithms/tree/mst.py +++ b/networkx/algorithms/tree/mst.py @@ -1,11 +1,3 @@ -# -*- coding: utf-8 -*- -# Copyright (C) 2017 NetworkX Developers -# Aric Hagberg <hagberg@lanl.gov> -# Dan Schult <dschult@colgate.edu> -# Pieter Swart <swart@lanl.gov> -# Loïc Séguin-C. <loicseguin@gmail.com> -# All rights reserved. -# BSD license. """ Algorithms for calculating min/max spanning trees/forests. |