MCPcopy Index your code
hub / github.com/python/cpython / Tracer

Class Tracer

Lib/idlelib/percolator.py:76–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74 import tkinter as tk
75
76 class Tracer(Delegator):
77 def __init__(self, name):
78 self.name = name
79 Delegator.__init__(self, None)
80
81 def insert(self, *args):
82 print(self.name, ": insert", args)
83 self.delegate.insert(*args)
84
85 def delete(self, *args):
86 print(self.name, ": delete", args)
87 self.delegate.delete(*args)
88
89 top = tk.Toplevel(parent)
90 top.title("Test Percolator")

Callers 1

_percolatorFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…