sorts output of python glob for https://bugs.python.org/issue30461 to allow extensions to have reproducible build results
(fileglob)
| 259 | return os.sep.join(l) |
| 260 | |
| 261 | def sorted_glob(fileglob): |
| 262 | """sorts output of python glob for https://bugs.python.org/issue30461 |
| 263 | to allow extensions to have reproducible build results""" |
| 264 | return sorted(glob.glob(fileglob)) |
| 265 | |
| 266 | def _fix_paths(paths, local_path, include_non_existing): |
| 267 | assert is_sequence(paths), repr(type(paths)) |
no outgoing calls
no test coverage detected