bpo-47196: Fix function pointer cast in test_imp by hoodmane · Pull Request #32244 · python/cpython

@hoodmane

The function PyInit_imp_dummy is declared as void f(PyObject* spec)
but called as void f(void). On wasm targets without the call
trampolines this causes a fatal error.

@hoodmane

miss-islington pushed a commit that referenced this pull request

Apr 3, 2022
I missed one PyInit function in #32244.

Automerge-Triggered-By: GH:tiran