From: Raymond Hettinger Date: Fri, 30 Dec 2016 06:57:12 +0000 (-0700) Subject: Issue #29103: Remove unused import. Noticed by Jean-Sebastien Bevilacqua. X-Git-Tag: v3.6.1rc1~236 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=381dc6c22f20505b9ea9e3c9342705eed554e441;p=thirdparty%2FPython%2Fcpython.git Issue #29103: Remove unused import. Noticed by Jean-Sebastien Bevilacqua. --- diff --git a/Lib/enum.py b/Lib/enum.py index 3f5ecbb5ceae..e79b0382eb09 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: