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

Method image_names

Lib/tkinter/__init__.py:2120–2122  ·  view source on GitHub ↗

Return a list of all existing image names.

(self)

Source from the content-addressed store, hash-verified

2118 # Image related commands
2119
2120 def image_names(self):
2121 """Return a list of all existing image names."""
2122 return self.tk.splitlist(self.tk.call('image', 'names'))
2123
2124 def image_types(self):
2125 """Return a list of all available image types (e.g. photo bitmap)."""

Callers 8

test_image_namesMethod · 0.45
test_image_namesMethod · 0.45
test_create_from_fileMethod · 0.45
test_create_from_dataMethod · 0.45

Calls 2

splitlistMethod · 0.80
callMethod · 0.45

Tested by 8

test_image_namesMethod · 0.36
test_image_namesMethod · 0.36
test_create_from_fileMethod · 0.36
test_create_from_dataMethod · 0.36