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:

otherObject.

Returns:

True if successful; False otherwise.

Equivalent to:#
obj.equal(other, deep=True)

See also

Object.equal().