bpo-20175: Convert Modules/_multiprocessing to the Argument Clinic (GH-14245)

This commit is contained in:
Zackery Spytz 2020-07-12 10:11:11 -06:00 committed by GitHub
parent b7047e59a4
commit 545b54d2ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 802 additions and 99 deletions

View file

@ -88,6 +88,6 @@ PyObject *_PyMp_SetError(PyObject *Type, int num);
*/
extern PyTypeObject _PyMp_SemLockType;
extern PyObject *_PyMp_sem_unlink(PyObject *ignore, PyObject *args);
extern PyObject *_PyMp_sem_unlink(const char *name);
#endif /* MULTIPROCESSING_H */