1 2 3 4 5 6 7 8 9
"""Example python module 0 for indexing tests.""" def mutate_obj_0(obj): obj = obj + 0 return obj class Worker0: def apply(self, value): return mutate_obj_0(value)