Method
__init__
(self, module_name, reason, is_top, mode, future_spec, source_ref)
Source from the content-addressed store, hash-verified
| 755 | kind = "COMPILED_PYTHON_PACKAGE" |
| 756 | |
| 757 | def __init__(self, module_name, reason, is_top, mode, future_spec, source_ref): |
| 758 | CompiledPythonModule.__init__( |
| 759 | self, |
| 760 | module_name=module_name, |
| 761 | reason=reason, |
| 762 | is_top=is_top, |
| 763 | mode=mode, |
| 764 | future_spec=future_spec, |
| 765 | source_ref=source_ref, |
| 766 | ) |
| 767 | |
| 768 | @staticmethod |
| 769 | def isCompiledPythonPackage(): |
Callers
nothing calls this directly
Tested by
no test coverage detected