reduce fix for Python 3

This commit is contained in:
Mike Croucher 2015-02-28 12:20:41 +00:00
parent 1c6cfe2d81
commit 6b1e20027a

View file

@ -2,6 +2,7 @@
# Licensed under the BSD 3-clause license (see LICENSE.txt)
from ..core.parameterization.observable import Observable
import collections, weakref
from functools import reduce
class Cacher(object):
def __init__(self, operation, limit=5, ignore_args=(), force_kwargs=()):