Right now, every arg/kwarg passes through `repr` to get a string for use in the cache key. This may put too much overloading on `__repr__` of classes. Perhaps, a special `__memokey__` could help for when it is too difficult to do everything in `__repr__`.
Right now, every arg/kwarg passes through
reprto get a string for use in the cache key. This may put too much overloading on__repr__of classes.Perhaps, a special
__memokey__could help for when it is too difficult to do everything in__repr__.