Skip to content

Commit d807bd3

Browse files
author
cindeem
committed
Merge pull request #2 from jarrodmillman/master
Deprecating recarrayutils in favor of Pandas' DataFrame
2 parents 31cf4f5 + 0873eae commit d807bd3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

brainx/recarrutil.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@
88

99
import numpy as np
1010
import numpy.testing as nt
11+
import sys
1112

13+
# The functionality in this module is now better provided by
14+
# Pandas' DataFrame -- http://pandas.pydata.org/
15+
sys.stderr.write('brainx.recarrutil will be removed,'
16+
' install pandas instead\n')
1217

1318
# XXX - It's probably OK to import something, but for now let's ban * imports
1419
# altogether .

0 commit comments

Comments
 (0)