lannybroo / numpyIO

Implementation of scipy.io.numpyio.fread and scipy.io.numpyio.fwrite without depending on scipy. Uses numpy's tofile/fromfile instead.

Clone this repository (size: 28.0 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/lannybroo/numpyio/
commit 18: d59456b7c2f7
parent 17: 41e057908271
branch: default
Add 'from __future__ import with_statement' to test_numpyIO.py for compatability with Python 2.5.
Alan Brooks / lannybroo
15 months ago

Changed (Δ38 bytes):

raw changeset »

test_numpyIO.py (1 lines added, 0 lines removed)

Up to file-list test_numpyIO.py:

@@ -5,6 +5,7 @@ Typically, should be run using 'nosetest
5
5
Author: Alan C. Brooks, alancbrooks(noSpam)@gmail.com
6
6
'''
7
7
8
from __future__ import with_statement
8
9
import numpy as np
9
10
from numpyIO import fread, fwrite
10
11