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

Function example

Lib/tkinter/scrolledtext.py:45–52  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

43
44
45def example():
46 from tkinter.constants import END
47
48 stext = ScrolledText(bg='white', height=10)
49 stext.insert(END, __doc__)
50 stext.pack(fill=BOTH, side=LEFT, expand=True)
51 stext.focus_set()
52 stext.mainloop()
53
54
55if __name__ == "__main__":

Callers 1

scrolledtext.pyFile · 0.70

Calls 5

ScrolledTextClass · 0.85
insertMethod · 0.45
packMethod · 0.45
focus_setMethod · 0.45
mainloopMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…