init doc
(self, title="Graphics Window",
width=200, height=200, autoflush=False)
| 240 | """A GraphWin is a toplevel window for displaying graphics.""" |
| 241 | |
| 242 | def __init__(self, title="Graphics Window", |
| 243 | width=200, height=200, autoflush=False): |
| 244 | """ init doc """ |
| 245 | _tkCall(self.__init_help, title, width, height, autoflush) |
| 246 | |
| 247 | |
| 248 | def __init_help(self, title, width, height, autoflush): |