summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-12-30 06:57:12 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-12-30 06:57:12 (GMT)
commit381dc6c22f20505b9ea9e3c9342705eed554e441 (patch)
tree4fd90df721b05d0afbae0723f9b6d8abe9474a70
parent51447db47c0f4c9f2ecf0e77b37b238cc947b3e0 (diff)
downloadcpython-381dc6c22f20505b9ea9e3c9342705eed554e441.zip
cpython-381dc6c22f20505b9ea9e3c9342705eed554e441.tar.gz
cpython-381dc6c22f20505b9ea9e3c9342705eed554e441.tar.bz2
Issue #29103: Remove unused import. Noticed by Jean-Sebastien Bevilacqua.
-rw-r--r--Lib/enum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/enum.py b/Lib/enum.py
index 3f5ecbb..e79b038 100644
--- a/Lib/enum.py
+++ b/Lib/enum.py
@@ -1,7 +1,7 @@
import sys
from types import MappingProxyType, DynamicClassAttribute
from functools import reduce
-from operator import or_ as _or_, and_ as _and_, xor, neg
+from operator import or_ as _or_
# try _collections first to reduce startup cost
try: