diff -r c6df85e1d42e Doc/glossary.rst --- a/Doc/glossary.rst Tue Apr 14 13:54:09 2015 -0700 +++ b/Doc/glossary.rst Tue Apr 14 17:49:49 2015 -0400 @@ -251,8 +251,10 @@ finder An object that tries to find the :term:`loader` for a module. It must implement either a method named :meth:`find_loader` or a method named - :meth:`find_module`. See :pep:`302` and :pep:`420` for details and - :class:`importlib.abc.Finder` for an :term:`abstract base class`. + :meth:`find_spec`. See :pep:`302` and :pep:`420` for details and + :class:`importlib.abc.MetaPathFinder` or + :class:`importlib.abc.PathEntryFinder` for an + :term:`abstract base class`. floor division Mathematical division that rounds down to nearest integer. The floor diff -r c6df85e1d42e Doc/library/sys.rst --- a/Doc/library/sys.rst Tue Apr 14 13:54:09 2015 -0700 +++ b/Doc/library/sys.rst Tue Apr 14 17:49:49 2015 -0400 @@ -762,9 +762,9 @@ .. data:: meta_path - A list of :term:`finder` objects that have their :meth:`find_module` + A list of :term:`finder` objects that have their :meth:`find_spec` methods called to see if one of the objects can find the module to be - imported. The :meth:`find_module` method is called at least with the + imported. The :meth:`find_spec` method is called at least with the absolute name of the module being imported. If the module to be imported is contained in package then the parent package's :attr:`__path__` attribute is passed in as a second argument. The method returns ``None`` if