Message211974
| Author |
brett.cannon |
| Recipients |
brett.cannon, docs@python, eric.snow, larry, python-dev, r.david.murray |
| Date |
2014年02月23日.00:10:35 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1393114235.6.0.73348508689.issue20199@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
The importlib.abc.FileLoader deprecation w/o exec_module() makes sense. The load_module() method simply called super().load_module() as the class is fully abstract and only provides get_filename() and get_data() for convenience. And since importlib.abc.Loader doesn't have exec_module() as abstract there's simply no need to define the method.
And thanks for doing all of this work to make the What's New doc be so thorough! |
|