MCPcopy Index your code
hub / github.com/python/cpython / _blankimage

Method _blankimage

Lib/turtle.py:464–469  ·  view source on GitHub ↗

return a blank image object

(self)

Source from the content-addressed store, hash-verified

462 """
463
464 def _blankimage(self):
465 """return a blank image object
466 """
467 img = TK.PhotoImage(width=1, height=1, master=self.cv)
468 img.blank()
469 return img
470
471 def _image(self, filename):
472 """return an image object containing the

Callers 1

__init__Method · 0.80

Calls 1

blankMethod · 0.95

Tested by

no test coverage detected