diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-04 12:17:59 -0800 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-14 10:14:05 -0800 |
commit | 19784177a61de75927a4934fd4cdd91afbb5b35c (patch) | |
tree | cf9f88bf968e48d0eebd2cd523cefd2bd4c2fd51 /numpy/lib/_datasource.py | |
parent | 250861059b106371cb232456eeccd6d9e97d8f00 (diff) | |
download | numpy-19784177a61de75927a4934fd4cdd91afbb5b35c.tar.gz |
MAINT: address several reviewer comments
Diffstat (limited to 'numpy/lib/_datasource.py')
-rw-r--r-- | numpy/lib/_datasource.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/_datasource.py b/numpy/lib/_datasource.py index b136314a2..3a0e67f60 100644 --- a/numpy/lib/_datasource.py +++ b/numpy/lib/_datasource.py @@ -20,8 +20,8 @@ gzip, bz2 and xz are supported. Example:: >>> # Create a DataSource, use os.curdir (default) for local storage. - >>> import numpy.lib._datasource as datasource - >>> ds = datasource.DataSource() + >>> from numpy import DataSource + >>> ds = DataSource() >>> >>> # Open a remote file. >>> # DataSource downloads the file, stores it locally in: |