Created
April 3, 2026 03:57
-
-
Save msullivan/90996c05e8c8e01c2492d1c657b59d52 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # this file intentionally left blank |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from .uhoh import x |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| def filt(importer: str, name: str, fromlist: tuple[str, ...] | None) -> bool: | |
| print(f'{importer=} {name=} {fromlist=}') | |
| return False | |
| if __name__ == '__main__': | |
| sys.set_lazy_imports("all") | |
| sys.set_lazy_imports_filter(filt) | |
| from . import go |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # aa | |
| print("TEST") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| x = 'test' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment