MCPcopy
hub / github.com/Nuitka/Nuitka / getUncompiledNonTechnicalModules

Function getUncompiledNonTechnicalModules

nuitka/ModuleRegistry.py:107–114  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

105
106
107def getUncompiledNonTechnicalModules():
108 result = set()
109
110 for module in getDoneModules():
111 if module.isUncompiledPythonModule():
112 result.add(module)
113
114 return tuple(sorted(result, key=lambda module: module.getFullName()))
115
116
117def _normalizeModuleFilename(filename):

Callers

nothing calls this directly

Calls 4

getDoneModulesFunction · 0.85
getFullNameMethod · 0.80
addMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…