Skip to content

0.7.0

Compare
Choose a tag to compare
@sqla-tester sqla-tester released this 20 Sep 19:10

0.7.0

Released: Mon Dec 10 2018

  • [bug] The decorator module is now used when creating function decorators
    within CacheRegion.cache_on_arguments() and
    CacheRegion.cache_multi_on_arguments() so that function signatures
    are preserved. Pull request courtesy ankitpatel96.

    Additionally adds a small performance enhancement which is to avoid
    internally creating a @wraps() decorator for the creator function on
    every get operation, by allowing the arguments to the creator be passed
    separately to CacheRegion.get_or_create().

    References: #137

  • [bug] [py3k] Fixed all Python 3.x deprecation warnings including
    inspect.getargspec().

    References: #129