return an image object containing the imagedata from an image file named filename.
(self, filename)
| 469 | return img |
| 470 | |
| 471 | def _image(self, filename): |
| 472 | """return an image object containing the |
| 473 | imagedata from an image file named filename. |
| 474 | """ |
| 475 | return TK.PhotoImage(file=filename, master=self.cv) |
| 476 | |
| 477 | def __init__(self, cv): |
| 478 | self.cv = cv |
no outgoing calls
no test coverage detected