Issue #29103: Remove unused import. Noticed by Jean-Sebastien Bevilacqua.

This commit is contained in:
Raymond Hettinger 2016-12-29 23:57:12 -07:00
parent 51447db47c
commit 381dc6c22f
1 changed files with 1 additions and 1 deletions

View File

@ -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: