Home | History | Annotate | Download | only in python2.7

Lines Matching refs:package

16 which contains the package search path.
100 If INPACKAGE is given, it must be the dotted name of the package in
102 package search path; otherwise, we are searching for a top-level
126 package = module[:i]
128 parent = _readmodule(package, path, inpackage)
130 package = "%s.%s" % (inpackage, package)
132 raise ImportError('No package named {}'.format(package))
133 return _readmodule(submodule, parent['__path__'], package)