summaryrefslogtreecommitdiff
path: root/game/python-extra/utils/bools.py
diff options
context:
space:
mode:
Diffstat (limited to 'game/python-extra/utils/bools.py')
-rw-r--r--game/python-extra/utils/bools.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/game/python-extra/utils/bools.py b/game/python-extra/utils/bools.py
new file mode 100644
index 0000000..f2bcab5
--- /dev/null
+++ b/game/python-extra/utils/bools.py
@@ -0,0 +1,7 @@
+try:
+ reduce
+except NameError:
+ from functools import reduce
+
+def xor(*things):
+ return reduce(lambda x, y: bool(x) ^ bool(y), things)