Apply glob to paths and prepend local_path if needed.
(paths, local_path='', include_non_existing=True)
| 301 | return [minrelpath(p) for p in new_paths] |
| 302 | |
| 303 | def gpaths(paths, local_path='', include_non_existing=True): |
| 304 | """Apply glob to paths and prepend local_path if needed. |
| 305 | """ |
| 306 | if is_string(paths): |
| 307 | paths = (paths,) |
| 308 | return _fix_paths(paths, local_path, include_non_existing) |
| 309 | |
| 310 | def make_temp_file(suffix='', prefix='', text=True): |
| 311 | if not hasattr(_tdata, 'tempdir'): |