Changeset 3615

Show
Ignore:
Timestamp:
03/29/07 16:37:58 (2 years ago)
Author:
cookedm
Message:

cpuinfo: Nocona is a PentiumIV, not 686. Fixes #438

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/numpy/distutils/cpuinfo.py

    r3538 r3615  
    186186 
    187187    def _is_Nocona(self): 
    188         return self.is_64bit() and self.is_i686() 
    189      
     188        return self.is_64bit() and self.is_PentiumIV() 
     189 
    190190    def _is_Core2(self): 
    191191        return self.is_64bit() and self.is_Intel() and \ 
    192192               re.match(r'.*?Core\(TM\)2\b', \ 
    193193                        self.info[0]['model name']) is not None 
    194      
     194 
    195195    def _is_Itanium(self): 
    196196        return re.match(r'.*?Itanium\b',