10 Jul
2023
10 Jul
'23
6:56 p.m.
def __call__(self, xfinal): for idx in range(len(self.ops)): # sometimes ‘enumerate’ is slow for me so i use range len op = self.ops[idx] if type(op) is TryThings: # i’m imagining rewriting them in place as evaluated assert op.x == # i want access to op still tho, so i’d better change something