MCPcopy Create free account
hub / github.com/Vector35/debugger / is_wow64

Function is_wow64

test/debugger_test.py:40–44  ·  view source on GitHub ↗
(fpath)

Source from the content-addressed store, hash-verified

38
39
40def is_wow64(fpath):
41 if 'x86' not in fpath:
42 return False
43 a, b = platform.architecture()
44 return a == '64bit' and b.startswith('Windows')
45
46
47class DebuggerAPI(unittest.TestCase):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected