Commit c3fc341c authored by Richard Oudkerk's avatar Richard Oudkerk

Issue #21704: Merge.

parents d6af0478 e0e65817
...@@ -52,6 +52,7 @@ Ankur Ankan ...@@ -52,6 +52,7 @@ Ankur Ankan
Jon Anglin Jon Anglin
Heidi Annexstad Heidi Annexstad
Ramchandra Apte Ramchandra Apte
Arfrever Frehtes Taifersar Arahesis
Éric Araujo Éric Araujo
Alicia Arlen Alicia Arlen
Jeffrey Armstrong Jeffrey Armstrong
......
...@@ -113,6 +113,9 @@ Core and Builtins ...@@ -113,6 +113,9 @@ Core and Builtins
Library Library
------- -------
- Issue #21704: Fix build error for _multiprocessing when semaphores
are not available. Patch by Arfrever Frehtes Taifersar Arahesis.
- Issue #20173: Convert sha1, sha256, sha512 and md5 to ArgumentClinic. - Issue #20173: Convert sha1, sha256, sha512 and md5 to ArgumentClinic.
Patch by Vajrasky Kok. Patch by Vajrasky Kok.
......
...@@ -128,7 +128,9 @@ static PyMethodDef module_methods[] = { ...@@ -128,7 +128,9 @@ static PyMethodDef module_methods[] = {
{"recv", multiprocessing_recv, METH_VARARGS, ""}, {"recv", multiprocessing_recv, METH_VARARGS, ""},
{"send", multiprocessing_send, METH_VARARGS, ""}, {"send", multiprocessing_send, METH_VARARGS, ""},
#endif #endif
#ifndef POSIX_SEMAPHORES_NOT_ENABLED
{"sem_unlink", _PyMp_sem_unlink, METH_VARARGS, ""}, {"sem_unlink", _PyMp_sem_unlink, METH_VARARGS, ""},
#endif
{NULL} {NULL}
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment