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

Method find_enclosed

Lib/tkinter/__init__.py:3056–3059  ·  view source on GitHub ↗

Return all items in rectangle defined by X1,Y1,X2,Y2.

(self, x1, y1, x2, y2)

Source from the content-addressed store, hash-verified

3054 return self.find('closest', x, y, halo, start)
3055
3056 def find_enclosed(self, x1, y1, x2, y2):
3057 """Return all items in rectangle defined
3058 by X1,Y1,X2,Y2."""
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

Callers

nothing calls this directly

Calls 1

findMethod · 0.95

Tested by

no test coverage detected