Returns list of WindowsVS instances.
(year=None, grade=None, verbose=0)
| 231 | |
| 232 | |
| 233 | def 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 | |
| 247 | class WindowsCpu: |
nothing calls this directly
no test coverage detected
searching dependent graphs…