diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2024-05-04 08:23:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-04 08:23:50 (GMT) |
commit | 85af78996117dbe8ad45716633a3d6c39ff7bab2 (patch) | |
tree | 31c8836d1a3f177c84100136d55decf7d8e29983 /Modules/_testcapimodule.c | |
parent | da2cfc4cb6b756b819b45bf34dd735c27b74d803 (diff) | |
download | cpython-85af78996117dbe8ad45716633a3d6c39ff7bab2.zip cpython-85af78996117dbe8ad45716633a3d6c39ff7bab2.tar.gz cpython-85af78996117dbe8ad45716633a3d6c39ff7bab2.tar.bz2 |
gh-111997: C-API for signalling monitoring events (#116413)
Diffstat (limited to 'Modules/_testcapimodule.c')
-rw-r--r-- | Modules/_testcapimodule.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index beae13c..e7e342e 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -4135,6 +4135,9 @@ PyInit__testcapi(void) if (_PyTestCapi_Init_Time(m) < 0) { return NULL; } + if (_PyTestCapi_Init_Monitoring(m) < 0) { + return NULL; + } if (_PyTestCapi_Init_Object(m) < 0) { return NULL; } |