Skip to content Skip to sidebar Skip to footer
Showing posts with the label Python Importlib

How To Edit Cpython's Lib/importlib/_bootstrap.py?

I would like to play with CPython's Lib/importlib/_bootstrap.py file, but my edits in my curren… Read more How To Edit Cpython's Lib/importlib/_bootstrap.py?

How To Implement An Import Hook That Can Modify The Source Code On The Fly Using Importlib?

Using the deprecated module imp, I can write a custom import hook that modifies the source code of … Read more How To Implement An Import Hook That Can Modify The Source Code On The Fly Using Importlib?