aboutsummaryrefslogtreecommitdiff
path: root/feast.py
diff options
context:
space:
mode:
authorCalvin <calvin@EESI>2013-04-01 13:51:56 -0400
committerCalvin <calvin@EESI>2013-04-01 13:51:56 -0400
commitf7ebeb0a9ede9a78990a292252affcb2a3a5456d (patch)
tree146670a55333d083119e785da87ab3e188b8cb30 /feast.py
parentd9d44c48398016d2562a723f0737b691077a57df (diff)
move the docstring to the top, remove an old comment
Diffstat (limited to 'feast.py')
-rw-r--r--feast.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/feast.py b/feast.py
index 9cf5725..8623044 100644
--- a/feast.py
+++ b/feast.py
@@ -1,7 +1,3 @@
-import numpy as np
-from ctypes import *
-
-
'''
The FEAST module provides an interface between the C-library
for feature selection to Python.
@@ -22,10 +18,8 @@ from ctypes import *
__email__ = "mutantturkey@gmail.com"
__status__ = "Release"
'''
-
-# I listed the function definitions in alphabetical order. Lets
-# keep this up.
-
+import numpy as np
+from ctypes import *
try:
libFSToolbox = CDLL("libFSToolbox.so");