diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-04-14 07:15:26 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-04-14 07:15:26 -0700 |
commit | 01ed88af5b784d52f4fcf383e319cde67c8a22fb (patch) | |
tree | 91736aafb0da995afee4170619196a87b4177f02 /numpy/testing | |
parent | e589c6ed1dac7755bb7bd9e181a43ebeff62dcec (diff) | |
parent | 68338eed3ae91c9846142e088c16b63635e58178 (diff) | |
download | numpy-01ed88af5b784d52f4fcf383e319cde67c8a22fb.tar.gz |
Merge pull request #3237 from charris/2to3-apply-basestring
2to3: Apply basestring fixer.
Diffstat (limited to 'numpy/testing')
-rw-r--r-- | numpy/testing/nosetester.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/testing/nosetester.py b/numpy/testing/nosetester.py index a7354b794..d07a5ad0b 100644 --- a/numpy/testing/nosetester.py +++ b/numpy/testing/nosetester.py @@ -10,6 +10,7 @@ import os import sys import warnings import numpy.testing.utils +from numpy.compat import basestring def get_package_name(filepath): """ |