MCPcopy Index your code
hub / github.com/python/cpython / any_missing

Method any_missing

Lib/modulefinder.py:539–545  ·  view source on GitHub ↗

Return a list of modules that appear to be missing. Use any_missing_maybe() if you want to know which modules are certain to be missing, and which *may* be missing.

(self)

Source from the content-addressed store, hash-verified

537 print("?", name, "imported from", ', '.join(mods))
538
539 def any_missing(self):
540 """Return a list of modules that appear to be missing. Use
541 any_missing_maybe() if you want to know which modules are
542 certain to be missing, and which *may* be missing.
543 """
544 missing, maybe = self.any_missing_maybe()
545 return missing + maybe
546
547 def any_missing_maybe(self):
548 """Return two lists, one with modules that are certainly missing

Callers 1

mainFunction · 0.95

Calls 1

any_missing_maybeMethod · 0.95

Tested by

no test coverage detected