[issue21436] Consider leaving importlib.abc.Loader.load_module()

2021-11-07 Thread Nick Coghlan
Nick Coghlan added the comment: FWIW, I think it would be desirable to retain/restore some form of API that allows the creation of modules from files without requiring the user to know about module specs (or loaders, or anything else). My current preference would be for a "module_from_file_l

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2021-11-04 Thread Sebastian Rittau
Sebastian Rittau added the comment: I would ask you to reconsider this. https://stackoverflow.com/questions/67631/how-to-import-a-module-given-the-full-path/67692#67692 is a highly active question on StackOverflow, and my answer basically provided me all the karma I got there. For users that

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2015-12-12 Thread Berker Peksag
Changes by Berker Peksag : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2015-12-04 Thread Brett Cannon
Brett Cannon added the comment: Python 3.5 lets you do: spec = importlib.util.spec_from_file_location('what.ever', 'foo.py') module = importlib.util.module_from_spec(spec) spec.loader.exec_module(module) I am satisfied that case for loading from a file is easy enough to not warrant keepi

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2014-10-17 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2014-10-15 Thread Nikolay Bryskin
Changes by Nikolay Bryskin : -- nosy: +nikicat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2014-05-25 Thread Eric Snow
Eric Snow added the comment: I'd rather see something like "load_from_spec()" added to importlib.util, a la issue #21235. -- ___ Python tracker ___ _

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2014-05-12 Thread Boris Dayma
Changes by Boris Dayma : -- nosy: +Borisd13 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2014-05-11 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2014-05-05 Thread Brett Cannon
Brett Cannon added the comment: So it's not quite as bad as you think as SourceFileLoader.load_module() doesn't need an argument (I've opened http://bugs.python.org/issue21438 to fix the documentation). Admittedly it is a longer command than imp.load_source() to type, but there is no extra inf