MCPcopy Index your code
hub / github.com/Nuitka/Nuitka / makeUncompiledPythonModule

Function makeUncompiledPythonModule

nuitka/nodes/ModuleNodes.py:798–820  ·  view source on GitHub ↗
(
    module_name, reason, filename, bytecode, is_package, technical
)

Source from the content-addressed store, hash-verified

796
797
798def makeUncompiledPythonModule(
799 module_name, reason, filename, bytecode, is_package, technical
800):
801 source_ref = makeSourceReferenceFromFilename(filename)
802
803 if is_package:
804 return UncompiledPythonPackage(
805 module_name=module_name,
806 reason=reason,
807 bytecode=bytecode,
808 filename=filename,
809 technical=technical,
810 source_ref=source_ref,
811 )
812 else:
813 return UncompiledPythonModule(
814 module_name=module_name,
815 reason=reason,
816 bytecode=bytecode,
817 filename=filename,
818 technical=technical,
819 source_ref=source_ref,
820 )
821
822
823class UncompiledPythonModule(PythonModuleBase):

Callers 4

buildModuleFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…