Skip to content

Commit 63d665c

Browse files
committed
Merge pull request #12 from loisaidasam/master
Splitting up one file into a module
2 parents 7d09627 + 67ea1bf commit 63d665c

File tree

13 files changed

+954
-822
lines changed

13 files changed

+954
-822
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
*.pyc
3+
build

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Michel Albert ([email protected])
2+
Sam Sandberg (@LoisaidaSam)

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
1.2.0
2+
- Split up one big file into smaller more logical sub-modules
3+
14
1.1.1b3
25
- Fixed bug #1727558
36
- Some more unit-tests

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ USAGE
2121

2222
A simple python program could look like this::
2323

24-
>>> from cluster import *
24+
>>> from cluster import HierarchicalClustering
2525
>>> data = [12,34,23,32,46,96,13]
2626
>>> cl = HierarchicalClustering(data, lambda x,y: abs(x-y))
2727
>>> cl.getlevel(10) # get clusters of items closer than 10

0 commit comments

Comments
 (0)