[Python-checkins] cpython (3.6): Issue #29103: Remove unused import. Noticed by Jean-Sebastien Bevilacqua.

raymond.hettinger python-checkins at python.org
Fri Dec 30 01:57:38 EST 2016


https://hg.python.org/cpython/rev/bf6987b93358
changeset:   105898:bf6987b93358
branch:      3.6
parent:      105896:1003eabb2705
user:        Raymond Hettinger <python at rcn.com>
date:        Thu Dec 29 23:57:12 2016 -0700
summary:
  Issue #29103: Remove unused import.  Noticed by Jean-Sebastien Bevilacqua.

files:
  Lib/enum.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/enum.py b/Lib/enum.py
--- 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:

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list