PEP 793 – PyModExport: A new entry point for C extension modules

I’m in the middle of implementing PEP 793 in PyO3 and have hit a wrinkle.

According to PEP 793 – PyModExport: A new entry point for C extension modules | peps.python.org , support for the inittab was deferred.

However, PyO3 uses and tests the inittab, so PyO3 would ideally like to have a function that allows appending modules to the inittab using just an array of slots or something along those lines.

1 Like