return an image object containing the imagedata from a gif-file named filename.
(self, filename)
| 370 | return img |
| 371 | |
| 372 | def _image(self, filename): |
| 373 | """return an image object containing the |
| 374 | imagedata from a gif-file named filename. |
| 375 | """ |
| 376 | return TK.PhotoImage(file=filename, master=self.cv) |
| 377 | |
| 378 | def __init__(self, cv): |
| 379 | self.cv = cv |
no outgoing calls
no test coverage detected