Skip to content

AccumulatorCache: support instance methods

Frank Winklmeier requested to merge fwinkl/athena:fwinkl_20230501T180345 into 23.0

Make the AccumulatorCache also work with instance methods, e.g.:

class Foo:
  @AccumulatorCache
  def bar(self):
    return 42

Previously this would fail because the self got lost.

Merge request reports