True if we are running on a Power PC platform.
()
| 110 | |
| 111 | |
| 112 | def on_powerpc(): |
| 113 | """ True if we are running on a Power PC platform.""" |
| 114 | return platform.processor() == 'powerpc' or \ |
| 115 | platform.machine().startswith('ppc') |
| 116 | |
| 117 | |
| 118 | def bad_arcsinh(): |
no test coverage detected
searching dependent graphs…