Return (width, height, x, y)
(self)
| 1065 | return int(float(text.index(mark))) |
| 1066 | |
| 1067 | def get_geometry(self): |
| 1068 | "Return (width, height, x, y)" |
| 1069 | geom = self.top.wm_geometry() |
| 1070 | m = re.match(r"(\d+)x(\d+)\+(-?\d+)\+(-?\d+)", geom) |
| 1071 | return list(map(int, m.groups())) |
| 1072 | |
| 1073 | def close_event(self, event): |
| 1074 | self.close() |
nothing calls this directly
no test coverage detected