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

Method create_bitmap

Lib/tkinter/__init__.py:3069–3071  ·  view source on GitHub ↗

Create bitmap with coordinates x1,y1.

(self, *args, **kw)

Source from the content-addressed store, hash-verified

3067 return self._create('arc', args, kw)
3068
3069 def create_bitmap(self, *args, **kw):
3070 """Create bitmap with coordinates x1,y1."""
3071 return self._create('bitmap', args, kw)
3072
3073 def create_image(self, *args, **kw):
3074 """Create image item with coordinates x1,y1."""

Callers

nothing calls this directly

Calls 1

_createMethod · 0.95

Tested by

no test coverage detected