aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-12-29 23:57:12 -0700
committerRaymond Hettinger <python@rcn.com>2016-12-29 23:57:12 -0700
commit381dc6c22f20505b9ea9e3c9342705eed554e441 (patch)
tree4fd90df721b05d0afbae0723f9b6d8abe9474a70 /Lib/enum.py
parentClearer compact dict attribution to the original proposal (diff)
downloadcpython-381dc6c22f20505b9ea9e3c9342705eed554e441.tar.gz
cpython-381dc6c22f20505b9ea9e3c9342705eed554e441.tar.bz2
cpython-381dc6c22f20505b9ea9e3c9342705eed554e441.zip
Issue #29103: Remove unused import. Noticed by Jean-Sebastien Bevilacqua.
Diffstat (limited to 'Lib/enum.py')
-rw-r--r--Lib/enum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/enum.py b/Lib/enum.py
index 3f5ecbb5cea..e79b0382eb0 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: