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)
| 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 |
nothing calls this directly
no test coverage detected