mirror of
https://github.com/python/cpython.git
synced 2026-07-29 05:08:36 -04:00
This module has a manual lazy import hack using `__getattr__`. Now that lazy imports exist and cannot be disabled, this could use lazy imports instead. Key differences: this will now show up in sys.lazy_modules when accessed. Error messages should be a bit better without the wrapper `__getattr__` involved. That's the only differences I can think of. Signed-off-by: Henry Schreiner <[email protected]> Co-authored-by: Gregory P. Smith <[email protected]>