MCPcopy Index your code
hub / github.com/RustPython/RustPython / any_missing

Method any_missing

Lib/modulefinder.py:530–536  ·  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

528 print("?", name, "imported from", ', '.join(mods))
529
530 def any_missing(self):
531 """Return a list of modules that appear to be missing. Use
532 any_missing_maybe() if you want to know which modules are
533 certain to be missing, and which *may* be missing.
534 """
535 missing, maybe = self.any_missing_maybe()
536 return missing + maybe
537
538 def any_missing_maybe(self):
539 """Return two lists, one with modules that are certainly missing

Callers

nothing calls this directly

Calls 1

any_missing_maybeMethod · 0.95

Tested by

no test coverage detected