diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-10-15 23:12:20 +0200 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-10-15 23:12:20 +0200 |
commit | 03f0aebf1a43c672f17e89382804809601828111 (patch) | |
tree | 54dff27e6027271b4c521e7154a48baceae27be7 /numpy/testing/utils.py | |
parent | aa8a2437b700ce9a8c3e12652b75982e96a3777c (diff) | |
download | numpy-03f0aebf1a43c672f17e89382804809601828111.tar.gz |
MAINT: remove obsolete version checks
minimum requirement is python2.6, this allows removing a couple 2.3 and
2.4 checks.
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index dc5929753..3b20f9238 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -159,7 +159,7 @@ else: """ Return memory usage of running python. [Not implemented]""" raise NotImplementedError -if os.name=='nt' and sys.version[:3] > '2.3': +if os.name=='nt': # Code "stolen" from enthought/debug/memusage.py def GetPerformanceAttributes(object, counter, instance = None, inum=-1, format = None, machine=None): |