Assume we have package named 'package', it has a module 'module'.
If we
from package import module
Since 'package' is loaded, will package's local namespace has a name 'module'?
We can see a phrase like this in reference of 'import':
The first form of import statement binds the module name in the local namespace to the module object, and then goes on to import the next identifier, if any. If the module name is followed by as, the name following as is used as the local name for the module.
The from form does not bind the module name: it goes through the list of identifiers, looks each one of them up in the module found in step (1), and binds the name in the local namespace to the object thus found. As with the first form of import, an alternate local name can be supplied by specifying “as localname”. If a name is not found, ImportError is raised. If the list of identifiers is replaced by a star ('*'), all public names defined in the module are bound in the local namespace of the import statement..
What does it mean by "The from form does not bind the module name" in the second paragraph?