Browse Source

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

pull/22/head
Raymond Hettinger 10 years ago
parent
commit
381dc6c22f
  1. 2
      Lib/enum.py

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

Loading…
Cancel
Save