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

Method grid_size

Lib/tkinter/__init__.py:1993–1996  ·  view source on GitHub ↗

Return a tuple of the number of column and rows in the grid.

(self)

Source from the content-addressed store, hash-verified

1991 rowconfigure = grid_rowconfigure
1992
1993 def grid_size(self):
1994 """Return a tuple of the number of column and rows in the grid."""
1995 return self._getints(
1996 self.tk.call('grid', 'size', self._w)) or None
1997
1998 size = grid_size
1999

Callers

nothing calls this directly

Calls 2

_getintsMethod · 0.95
callMethod · 0.45

Tested by

no test coverage detected