Return join of path elements as a normalized path that is also a native path, i.e. only legal characters. Needed, because MSYS2 likes to keep "/" in normalized paths.
(*paths)
| 2073 | |
| 2074 | |
| 2075 | def getNormalizedPathJoin(*paths): |
| 2076 | """Return join of path elements as a normalized path that is also a native path, |
| 2077 | i.e. only legal characters. |
| 2078 | |
| 2079 | Needed, because MSYS2 likes to keep "/" in normalized paths. |
| 2080 | """ |
| 2081 | return getNormalizedPath(os.path.join(*paths)) |
| 2082 | |
| 2083 | |
| 2084 | def getFileContentsHash(filename, as_string=True, line_filter=None): |
no test coverage detected
searching dependent graphs…