ulkb.Object.deepequal#
- Object.deepequal(other)[source]#
Tests whether object is deep-equal to other.
Two objects are deep-equal if they are instances of the same class and their arguments (
args) and annotations (annotations) are deep-equal.- Parameters:
other –
Object.- Returns:
Trueif successful;Falseotherwise.
Equivalent to:#obj.equal(other, deep=True)
See also