diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-07-21 00:56:01 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-20 21:26:01 +0200 |
commit | 000a4eebe735b6aa527516cf70f5290c2b5163bf (patch) | |
tree | de1899924c4978fba9ae09bf8f7bb6a810654f63 /Modules/_multiprocessing/multiprocessing.h | |
parent | 8ede67cdcf36d5f6988cb935a6f85a1e14196f78 (diff) | |
download | cpython-000a4eebe735b6aa527516cf70f5290c2b5163bf.tar.gz cpython-000a4eebe735b6aa527516cf70f5290c2b5163bf.zip |
GH-94382: port multiprocessing static types to heap types (#94336)
Diffstat (limited to 'Modules/_multiprocessing/multiprocessing.h')
-rw-r--r-- | Modules/_multiprocessing/multiprocessing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_multiprocessing/multiprocessing.h b/Modules/_multiprocessing/multiprocessing.h index 3a8314b1db8..b595e5a8dd1 100644 --- a/Modules/_multiprocessing/multiprocessing.h +++ b/Modules/_multiprocessing/multiprocessing.h @@ -89,7 +89,7 @@ PyObject *_PyMp_SetError(PyObject *Type, int num); * Externs - not all will really exist on all platforms */ -extern PyTypeObject _PyMp_SemLockType; +extern PyType_Spec _PyMp_SemLockType_spec; extern PyObject *_PyMp_sem_unlink(const char *name); #endif /* MULTIPROCESSING_H */ |