New submission from Eric Snow :
FrozenImporter (in Lib/importlib/_bootstrap.py) has a get_source() method but
it always returns None. Now that __file__ is set on frozen (stdlib) modules,
we can implement FrozenImporter.get_source() appropriately.
--
components: Library (Lib)
messages
Eric Snow added the comment:
Note that once the get_source() implementation is done, the only missing method
for importlib.abc.InspectLoader is source_to_code(). (See
https://docs.python.org/3/library/importlib.html#importlib.abc.InspectLoader.)
--
_