diff options
Diffstat (limited to 'numpy/lib/_datasource.py')
-rw-r--r-- | numpy/lib/_datasource.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/lib/_datasource.py b/numpy/lib/_datasource.py index 4bfbf0ac4..957e7cb18 100644 --- a/numpy/lib/_datasource.py +++ b/numpy/lib/_datasource.py @@ -176,12 +176,11 @@ class DataSource (object): Examples -------- - :: >>> ds = DataSource('/home/guido') >>> urlname = 'http://www.google.com/index.html' - >>> gfile = ds.open('http://www.google.com/index.html') # open remote file + >>> gfile = ds.open('http://www.google.com/index.html') # remote file >>> ds.abspath(urlname) '/home/guido/www.google.com/site/index.html' |