pyregfi
|
Abstract class for most objects returned by the library. More...
Public Member Functions | |
def | __eq__ |
Test for equality. |
Abstract class for most objects returned by the library.
def pyregfi._StructureWrapper.__eq__ | ( | self, | |
other | |||
) |
Test for equality.
Records returned by pyregfi may be compared with one another. For example:
>>> key2 = key1.subkeys['child'] >>> key1 == key2 False >>> key1 != key2 True >>> key1 == key2.get_parent() True