Fix a few more Python tests

This commit is contained in:
Justine Tunney 2021-08-16 23:45:41 -07:00
parent 59e1c245d1
commit bc464a8898
7 changed files with 1018 additions and 547 deletions

View file

@ -10681,7 +10681,6 @@ os_cpu_count_impl(PyObject *module)
{
int ncpu;
ncpu = GetCpuCount();
printf("cpu count %d\n", ncpu);
if (ncpu >= 1)
return PyLong_FromLong(ncpu);
else