summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/enum.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/enum.py b/Lib/enum.py
index 4658393..adb6151 100644
--- a/Lib/enum.py
+++ b/Lib/enum.py
@@ -1565,11 +1565,6 @@ def unique(enumeration):
(enumeration, alias_details))
return enumeration
-def _power_of_two(value):
- if value < 1:
- return False
- return value == 2 ** _high_bit(value)
-
def _dataclass_repr(self):
dcf = self.__dataclass_fields__
return ', '.join(