summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Kern <robert.kern@gmail.com>2007-12-16 06:06:55 +0000
committerRobert Kern <robert.kern@gmail.com>2007-12-16 06:06:55 +0000
commitcf73c9df97192d2215a05436bffdfca9259daf9e (patch)
treea6c752ce9e28f7dd5662e40afd78958ae217c440
parent4bd4ec942d1e4734b6b00a6c7f609c8a12202489 (diff)
downloadnumpy-cf73c9df97192d2215a05436bffdfca9259daf9e.tar.gz
* Remove unimplemented functions from __all__.
* Remove warning about moving DataSource since that's what we're doing here.
-rw-r--r--_datasource.py14
-rw-r--r--io.py5
2 files changed, 2 insertions, 17 deletions
diff --git a/_datasource.py b/_datasource.py
index bca4e1d53..06aae85d8 100644
--- a/_datasource.py
+++ b/_datasource.py
@@ -42,20 +42,6 @@ from shutil import rmtree
from urllib2 import urlopen, URLError
from urlparse import urlparse
-import warnings
-
-# datasource has been used for a while in the NIPY project for analyzing
-# large fmri imaging files hosted over a network. Data would be fetched
-# via URLs, cached locally and analyzed. Under these conditions the code
-# worked well, however it needs to be documented, tested and reviewed
-# before being fully exposed to SciPy. We hope to do this before the
-# 0.7 release.
-_api_warning = "The datasource API will be changing frequently before \
-the 0.7 release as the code is ported from the NIPY project to SciPy. \
-Some of the current public interface may become private during the port! \
-Use this module minimally, if at all, until it is stabilized."
-
-warnings.warn(_api_warning)
# TODO: .zip support, .tar support?
_file_openers = {".gz":gzip.open, ".bz2":bz2.BZ2File, None:file}
diff --git a/io.py b/io.py
index 6272b4080..d6e1c9da5 100644
--- a/io.py
+++ b/io.py
@@ -1,10 +1,9 @@
__all__ = ['savetxt', 'loadtxt',
'loads', 'load',
- 'save', 'savez',
+ 'save',
'DataSource',
- 'unpackbits',
- 'packbits']
+ ]
import numpy as np