diff options
author | Paul Anton Letnes <paul.anton.letnes@gmail.com> | 2011-04-04 16:55:16 +0200 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2011-04-04 09:25:50 -0600 |
commit | 3c338cbb2dbc8e6efd4025371a9baadd1ca9a147 (patch) | |
tree | e4f3f7d1d0da630a5d4a11862388de48462952a8 | |
parent | ce0019c3c0ce3f5afe6eaf6326cd13093d0644e2 (diff) | |
download | numpy-3c338cbb2dbc8e6efd4025371a9baadd1ca9a147.tar.gz |
moved import statement in npyio.py for ease of reading
-rw-r--r-- | numpy/lib/npyio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index 306b9ce07..c74157ea2 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -6,6 +6,7 @@ import numpy as np import format import sys import os +import re import sys import itertools import warnings @@ -975,7 +976,6 @@ def savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n'): if own_fh: fh.close() -import re def fromregex(file, regexp, dtype): """ Construct an array from a text file, using regular expression parsing. |