MCPcopy Index your code
hub / github.com/RustPython/RustPython / find_overlapping

Method find_overlapping

Lib/tkinter/__init__.py:3061–3064  ·  view source on GitHub ↗

Return all items which overlap the rectangle defined by X1,Y1,X2,Y2.

(self, x1, y1, x2, y2)

Source from the content-addressed store, hash-verified

3059 return self.find('enclosed', x1, y1, x2, y2)
3060
3061 def find_overlapping(self, x1, y1, x2, y2):
3062 """Return all items which overlap the rectangle
3063 defined by X1,Y1,X2,Y2."""
3064 return self.find('overlapping', x1, y1, x2, y2)
3065
3066 def find_withtag(self, tagOrId):
3067 """Return all items with TAGORID."""

Callers

nothing calls this directly

Calls 1

findMethod · 0.95

Tested by

no test coverage detected