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

Method find_overlapping

Lib/tkinter/__init__.py:3144–3147  ·  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

3142 return self.find('enclosed', x1, y1, x2, y2)
3143
3144 def find_overlapping(self, x1, y1, x2, y2):
3145 """Return all items which overlap the rectangle
3146 defined by X1,Y1,X2,Y2."""
3147 return self.find('overlapping', x1, y1, x2, y2)
3148
3149 def find_withtag(self, tagOrId):
3150 """Return all items with TAGORID."""

Callers

nothing calls this directly

Calls 1

findMethod · 0.95

Tested by

no test coverage detected