summaryrefslogtreecommitdiff
path: root/networkx/linalg/graphmatrix.py
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2019-11-08 23:31:49 -0800
committerJarrod Millman <jarrod.millman@gmail.com>2019-11-11 13:39:06 -0800
commit89daa927a0135a79cc69a75a3c89202158fa2ca7 (patch)
tree4a1d775a0f1ba33b93dd5c1e65ef140d0d4b12ae /networkx/linalg/graphmatrix.py
parent857aa81ead611dd05c7445b53bd128131033d50e (diff)
downloadnetworkx-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/linalg/graphmatrix.py')
-rw-r--r--networkx/linalg/graphmatrix.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/networkx/linalg/graphmatrix.py b/networkx/linalg/graphmatrix.py
index 81c42dea..936e2611 100644
--- a/networkx/linalg/graphmatrix.py
+++ b/networkx/linalg/graphmatrix.py
@@ -1,16 +1,7 @@
"""
Adjacency matrix and incidence matrix of graphs.
"""
-# Copyright (C) 2004-2019 by
-# Aric Hagberg <hagberg@lanl.gov>
-# Dan Schult <dschult@colgate.edu>
-# Pieter Swart <swart@lanl.gov>
-# All rights reserved.
-# BSD license.
import networkx as nx
-__author__ = "\n".join(['Aric Hagberg (hagberg@lanl.gov)',
- 'Pieter Swart (swart@lanl.gov)',
- 'Dan Schult(dschult@colgate.edu)'])
__all__ = ['incidence_matrix',
'adj_matrix', 'adjacency_matrix',