mirror of
https://github.com/python/cpython.git
synced 2026-06-09 12:55:05 -04:00
Issue #21704: Merge.
This commit is contained in:
@@ -52,6 +52,7 @@ Ankur Ankan
|
||||
Jon Anglin
|
||||
Heidi Annexstad
|
||||
Ramchandra Apte
|
||||
Arfrever Frehtes Taifersar Arahesis
|
||||
Éric Araujo
|
||||
Alicia Arlen
|
||||
Jeffrey Armstrong
|
||||
|
||||
@@ -113,6 +113,9 @@ Core and Builtins
|
||||
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.
|
||||
Patch by Vajrasky Kok.
|
||||
|
||||
|
||||
@@ -128,7 +128,9 @@ static PyMethodDef module_methods[] = {
|
||||
{"recv", multiprocessing_recv, METH_VARARGS, ""},
|
||||
{"send", multiprocessing_send, METH_VARARGS, ""},
|
||||
#endif
|
||||
#ifndef POSIX_SEMAPHORES_NOT_ENABLED
|
||||
{"sem_unlink", _PyMp_sem_unlink, METH_VARARGS, ""},
|
||||
#endif
|
||||
{NULL}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user