MCPcopy Create free account
hub / github.com/ELMERIKH/PyinMemoryPE / bitness

Function bitness

windows/winobject/exception.py:301–305  ·  view source on GitHub ↗

Return 32 or 64

()

Source from the content-addressed store, hash-verified

299 return self
300
301def bitness():
302 """Return 32 or 64"""
303 import platform
304 bits = platform.architecture()[0]
305 return int(bits[:2])
306
307if bitness() == 32:
308 ECONTEXT = ECONTEXT32

Callers 1

exception.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected