Lines Matching refs:missing
493 paths, as well as modules that are missing, or seem to be missing.
508 # Print missing modules
509 missing, maybe = self.any_missing_maybe()
510 if missing:
513 for name in missing:
516 # Print modules that may be missing, but then again, maybe not...
519 print("Submodules that appear to be missing, but could also be", end=' ')
526 """Return a list of modules that appear to be missing. Use
528 certain to be missing, and which *may* be missing.
530 missing, maybe = self.any_missing_maybe()
531 return missing + maybe
534 """Return two lists, one with modules that are certainly missing
535 and one with modules that *may* be missing. The latter names could
542 missing = []
549 missing.append(name)
557 # failed. It's definitely missing.
558 missing.append(name)
560 # It's a global in the package: definitely not missing.
563 # It could be missing, but the package did an "import *"
568 # do funny star imports, it's very likely to be missing.
571 # it missing.
572 missing.append(name)
574 missing.append(name)
575 missing.sort()
577 return missing, maybe