diff options
| author | Jarrod Millman <millman@berkeley.edu> | 2008-04-20 11:49:35 +0000 |
|---|---|---|
| committer | Jarrod Millman <millman@berkeley.edu> | 2008-04-20 11:49:35 +0000 |
| commit | 8c663313de36e860bbfea0909de181d330bfdfc7 (patch) | |
| tree | a7b5f3585d2b8a2d8307bfb03dd0e449fa732860 /numpy/distutils/cpuinfo.py | |
| parent | cb7de97f089b67eaacf37ddbebcfb91c292c0ef4 (diff) | |
| download | numpy-8c663313de36e860bbfea0909de181d330bfdfc7.tar.gz | |
ran reindent in preparation for the 1.1 release
Diffstat (limited to 'numpy/distutils/cpuinfo.py')
| -rw-r--r-- | numpy/distutils/cpuinfo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/cpuinfo.py b/numpy/distutils/cpuinfo.py index 5781cca3c..c35338292 100644 --- a/numpy/distutils/cpuinfo.py +++ b/numpy/distutils/cpuinfo.py @@ -276,10 +276,10 @@ class LinuxCPUInfo(CPUInfoBase): return re.match(r'.*?\bsse2\b',self.info[0]['flags']) is not None def _has_sse3(self): - return re.match(r'.*?\bpni\b',self.info[0]['flags']) is not None + return re.match(r'.*?\bpni\b',self.info[0]['flags']) is not None def _has_ssse3(self): - return re.match(r'.*?\bssse3\b',self.info[0]['flags']) is not None + return re.match(r'.*?\bssse3\b',self.info[0]['flags']) is not None def _has_3dnow(self): return re.match(r'.*?\b3dnow\b',self.info[0]['flags']) is not None |
