winappdbg.crash.DummyCrashContainer:
Fakes a database of volatile Crash objects, trying to mimic part of
it's interface, but doesn't actually store anything.
winappdbg.win32.defines.GuessStringType:
Decorator that guesses the correct version (A or W) to call based
on the types of the strings passed as parameters.
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.