From 381dc6c22f20505b9ea9e3c9342705eed554e441 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Thu, 29 Dec 2016 23:57:12 -0700 Subject: [PATCH] Issue #29103: Remove unused import. Noticed by Jean-Sebastien Bevilacqua. --- Lib/enum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: