MCPcopy Index your code
hub / github.com/pymupdf/PyMuPDF / windows_vs_multiple

Function windows_vs_multiple

wdev.py:233–244  ·  view source on GitHub ↗

Returns list of WindowsVS instances.

(year=None, grade=None, verbose=0)

Source from the content-addressed store, hash-verified

231
232
233def windows_vs_multiple(year=None, grade=None, verbose=0):
234 '''
235 Returns list of WindowsVS instances.
236 '''
237 ret = list()
238 directories = glob.glob(_vs_pattern(year, grade))
239 for directory in directories:
240 vs = WindowsVS(directory=directory)
241 if verbose:
242 _log(vs.description_ml())
243 ret.append(vs)
244 return ret
245
246
247class WindowsCpu:

Callers

nothing calls this directly

Calls 5

description_mlMethod · 0.95
_vs_patternFunction · 0.85
WindowsVSClass · 0.85
_logFunction · 0.70
appendMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…