Shift the y-view according to NUMBER which is measured in "units" or "pages" (WHAT).
(self, number, what)
| 2185 | self.tk.call(self._w, 'yview', 'moveto', fraction) |
| 2186 | |
| 2187 | def yview_scroll(self, number, what): |
| 2188 | """Shift the y-view according to NUMBER which is measured in |
| 2189 | "units" or "pages" (WHAT).""" |
| 2190 | self.tk.call(self._w, 'yview', 'scroll', number, what) |
| 2191 | |
| 2192 | |
| 2193 | class Wm: |