Method
__init__
(
self,
module_name,
reason,
bytecode,
filename,
technical,
source_ref,
)
Source from the content-addressed store, hash-verified
| 834 | ) |
| 835 | |
| 836 | def __init__( |
| 837 | self, |
| 838 | module_name, |
| 839 | reason, |
| 840 | bytecode, |
| 841 | filename, |
| 842 | technical, |
| 843 | source_ref, |
| 844 | ): |
| 845 | PythonModuleBase.__init__( |
| 846 | self, |
| 847 | module_name=module_name, |
| 848 | reason=reason, |
| 849 | source_ref=source_ref, |
| 850 | ) |
| 851 | |
| 852 | self.bytecode = bytecode |
| 853 | self.filename = filename |
| 854 | |
| 855 | self.technical = technical |
| 856 | |
| 857 | self.used_modules = () |
| 858 | self.distribution_names = () |
| 859 | |
| 860 | def finalize(self): |
| 861 | del self.used_modules |
Callers
nothing calls this directly
Tested by
no test coverage detected