Lines Matching refs:spec
134 for spec in specs:
135 info, subs = _parse_spec(spec, seen, section)
141 def _parse_spec(spec, knownids=None, section=None):
142 """Yield an info tuple for each module corresponding to the given spec.
171 frozenid, _, remainder = spec.partition(':')
179 assert check_modname(frozenid), spec
181 assert check_modname(modname), spec
185 assert not os.path.isdir(pyfile), spec
190 assert check_modname(frozenid), spec
191 assert not knownids or frozenid not in knownids, spec
192 assert check_modname(modname), spec
193 assert not os.path.isdir(pyfile), spec
196 assert check_modname(frozenid), spec
197 assert check_modname(modname), spec
200 assert not modname or check_modname(modname), spec