Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions Lib/functools.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@
'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'partial',
'partialmethod', 'singledispatch']

try:
from _functools import reduce
except ImportError:
pass
from _functools import reduce
from abc import get_cache_token
from collections import namedtuple
# import types, weakref # Deferred to single_dispatch()
Expand Down