Return the number of active CPUs on a Windows system.
()
| 130 | |
| 131 | |
| 132 | def _num_cpus_windows(): |
| 133 | """Return the number of active CPUs on a Windows system.""" |
| 134 | return os.environ.get("NUMBER_OF_PROCESSORS") |
| 135 | |
| 136 | |
| 137 | def num_cpus(): |
nothing calls this directly
no outgoing calls
no test coverage detected