True if we are running on a Power PC platform.
()
| 96 | |
| 97 | |
| 98 | def on_powerpc(): |
| 99 | """ True if we are running on a Power PC platform.""" |
| 100 | return platform.processor() == 'powerpc' or \ |
| 101 | platform.machine().startswith('ppc') |
| 102 | |
| 103 | |
| 104 | def bad_arcsinh(): |
no test coverage detected