(fpath)
| 38 | |
| 39 | |
| 40 | def 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 | |
| 47 | class DebuggerAPI(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected