diff options
author | Calvin <calvin@EESI> | 2013-04-01 13:51:56 -0400 |
---|---|---|
committer | Calvin <calvin@EESI> | 2013-04-01 13:51:56 -0400 |
commit | f7ebeb0a9ede9a78990a292252affcb2a3a5456d (patch) | |
tree | 146670a55333d083119e785da87ab3e188b8cb30 | |
parent | d9d44c48398016d2562a723f0737b691077a57df (diff) |
move the docstring to the top, remove an old comment
-rw-r--r-- | feast.py | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -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"); |