summaryrefslogtreecommitdiffstats
path: root/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils.py b/utils.py
index 529d269..d43fdc3 100644
--- a/utils.py
+++ b/utils.py
@@ -53,6 +53,10 @@ def isinstanceexcept(subj, obj, exc=()):
return isinstance(subj, obj) and not isinstance(subj, exc)
+def areinstances(obj1, obj2):
+ isinstance(obj1, obj2.__class__) or isinstance(obj2, obj1.__class__)
+
+
def popattr(obj, what, *args):
assert len(args) < 2
ret = getattr(obj, what, *args)