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

Lines Matching refs:missing

491         paths, as well as modules that are missing, or seem to be missing.
507 # Print missing modules
508 missing, maybe = self.any_missing_maybe()
509 if missing:
511 print "Missing modules:"
512 for name in missing:
516 # Print modules that may be missing, but then again, maybe not...
519 print "Submodules thay appear to be missing, but could also be",
527 """Return a list of modules that appear to be missing. Use
529 certain to be missing, and which *may* be missing.
531 missing, maybe = self.any_missing_maybe()
532 return missing + maybe
535 """Return two lists, one with modules that are certainly missing
536 and one with modules that *may* be missing. The latter names could
543 missing = []
550 missing.append(name)
558 # failed. It's definitely missing.
559 missing.append(name)
561 # It's a global in the package: definitely not missing.
564 # It could be missing, but the package did an "import *"
569 # do funny star imports, it's very likely to be missing.
572 # it missing.
573 missing.append(name)
575 missing.append(name)
576 missing.sort()
578 return missing, maybe