From c3e4bbb5dc944081bb84d5a42089237576c647d3 Mon Sep 17 00:00:00 2001 From: Paul Anton Letnes Date: Mon, 4 Apr 2011 16:55:16 +0200 Subject: [PATCH] moved import statement in npyio.py for ease of reading --- numpy/lib/npyio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index 306b9ce0790f..c74157ea20a8 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -6,6 +6,7 @@ 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.