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

Function askopenfilenames

Lib/tkinter/filedialog.py:393–400  ·  view source on GitHub ↗

Ask for multiple filenames to open Returns a list of filenames or empty list if cancel button selected

(**options)

Source from the content-addressed store, hash-verified

391
392
393def askopenfilenames(**options):
394 """Ask for multiple filenames to open
395
396 Returns a list of filenames or empty list if
397 cancel button selected
398 """
399 options["multiple"]=1
400 return Open(**options).show()
401
402# FIXME: are the following perhaps a bit too convenient?
403

Callers 1

askopenfilesFunction · 0.85

Calls 2

OpenClass · 0.70
showMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…