| commit | 332b04bac35cd7305c60da2d5733940dc089949a | [log] [tgz] |
|---|---|---|
| author | Victor Stinner <vstinner@python.org> | Mon Mar 21 01:15:32 2022 +0100 |
| committer | GitHub <noreply@github.com> | Mon Mar 21 01:15:32 2022 +0100 |
| tree | a546b206bbbda8fe576e1b25ec2c609e20d1faf9 | |
| parent | 9d1c4d69dbc800ac344565119337fcf490cdc800 [diff] |
bpo-46850: Remove _PyEval_SetAsyncGenFinalizer() (GH-32017) Remove the following private undocumented functions from the C API: * _PyEval_GetAsyncGenFirstiter() * _PyEval_GetAsyncGenFinalizer() * _PyEval_SetAsyncGenFirstiter() * _PyEval_SetAsyncGenFinalizer() Call the public sys.get_asyncgen_hooks() and sys.set_asyncgen_hooks() functions instead.