From: Tomas Babej Date: Sat, 26 Dec 2015 11:13:45 +0000 (+0100) Subject: LazyUUIDTaskSet: Add implementation for the and operator X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/0695fd947f59e9e2ace9bdc445c96d9b3e0b68fd?hp=4f1686540934a69cd3b65e54f8921b97b1102b09 LazyUUIDTaskSet: Add implementation for the and operator --- diff --git a/tasklib/lazy.py b/tasklib/lazy.py index d294341..891eb5e 100644 --- a/tasklib/lazy.py +++ b/tasklib/lazy.py @@ -132,6 +132,15 @@ class LazyUUIDTaskSet(object): def __rxor__(self, other): return self.symmetric_difference(other) + def __and__(self, other): + return self.intersection(other) + + def __iand__(self, other): + return self.intersection_update(other) + + def __rand__(self, other): + return self.intersection(other) + def __le__(self, other): return self.issubset(other)