diff options
author | Pauli Virtanen <pav@iki.fi> | 2009-12-06 12:08:17 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2009-12-06 12:08:17 +0000 |
commit | 0bfa6057c2e08c75b81497e406d5e1f9537e0d9c (patch) | |
tree | 1c7e935c6fc1b7b064f903d35168a1f7205dfd8f /numpy/lib/io.py | |
parent | 321ad25308c3bf41c01ac54a91ea7f64c77ca4bb (diff) | |
download | numpy-0bfa6057c2e08c75b81497e406d5e1f9537e0d9c.tar.gz |
3K: lib: use open instead of file
Diffstat (limited to 'numpy/lib/io.py')
-rw-r--r-- | numpy/lib/io.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/io.py b/numpy/lib/io.py index 262d20dd9..7d2ac1c0e 100644 --- a/numpy/lib/io.py +++ b/numpy/lib/io.py @@ -23,7 +23,7 @@ from _iotools import LineSplitter, NameValidator, StringConverter, \ _is_string_like, has_nested_fields, flatten_dtype, \ easy_dtype -_file = file +_file = open _string_like = _is_string_like def seek_gzip_factory(f): |