8000 Merge pull request #8104 from gut/fix-test-code · numpy/numpy@39e2bc3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 39e2bc3

Browse files
authored
Merge pull request #8104 from gut/fix-test-code
Fix test code on cpuinfo's main function
2 parents 86c780d + a7eb3c7 commit 39e2bc3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

numpy/distutils/cpuinfo.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -681,13 +681,13 @@ def _has_3dnowext(self):
681681
# cpu.is_Intel()
682682
# cpu.is_Alpha()
683683
#
684-
# print 'CPU information:',
684+
# print('CPU information:'),
685685
# for name in dir(cpuinfo):
686686
# if name[0]=='_' and name[1]!='_':
687687
# r = getattr(cpu,name[1:])()
688688
# if r:
689689
# if r!=1:
690-
# print '%s=%s' %(name[1:],r),
690+
# print('%s=%s' %(name[1:],r))
691691
# else:
692-
# print name[1:],
693-
# print
692+
# print(name[1:]),
693+
# print()

0 commit comments

Comments
 (0)
0