Lines Matching refs:ops
306 ops = object.__getattribute__(self, "_History__operations")
307 if not ops:
310 return getattr(ops[-1]["operation"], name[len("operation_"):])
320 ops = object.__getattribute__(self, "_History__operations")
322 if not ops:
323 ops = []
325 "_History__operations", ops)
327 ops.append({
331 elif not ops:
336 op = ops[-1]["operation"]
389 del ops[-1]
414 ops = self.__operations
415 return "\n".join([str(op["operation"]) for op in ops])
433 ops = self.__operations
434 pathname = ops[-1]["pathname"]
437 "{0}-01.xml".format(ops[-1]["operation"].start_time))