~ubuntu-branches/ubuntu/raring/python-networkx/raring

« back to all changes in this revision

Viewing changes to networkx/algorithms/traversal/distance.py

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2009-11-23 15:44:34 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20091123154434-ellm2ut3a4edf9wh
Tags: 1.0~rc1~svn1492-1
* New upstream snapshot, past 1.0~rc1, as requested by Yaroslav
  Halchenko (Closes: #549996).
* Refresh patch accordingly:
   + debian/patches/10_doc_relocation.
* Get rid of extra LICENSE.txt file in /usr/share/doc.
* Use dh_compress -Xexamples/ to avoid compressing examples, thanks to
  Sandro Tosi (Closes: #539942).
* Bump Standards-Version from 3.8.0 to 3.8.3 (no changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
#    Aric Hagberg <hagberg@lanl.gov>
8
8
#    Dan Schult <dschult@colgate.edu>
9
9
#    Pieter Swart <swart@lanl.gov>
10
 
#    Distributed under the terms of the GNU Lesser General Public License
11
 
#    http://www.gnu.org/copyleft/lesser.html
 
10
#    All rights reserved.
 
11
#    BSD license.
12
12
 
13
13
__all__ = ['eccentricity', 'diameter', 'radius', 'periphery', 'center']
14
14