In Python 3.10, the find_loader() and find_module() methods of zipimport were deprecated by commit d2e94bb0848e04a90efa51be401f0ce8a9e252f2 and commit 57c6cb5100d19a0e0218c77d887c3c239c9ce435. It's now time to remove them. The find_spec() method should be used instead. See issue #86301 and [PEP 451](https://peps.python.org/pep-0451/) for the rationale. I wrote **PR #94380** to remove these methods.