(path)
| 22 | |
| 23 | |
| 24 | def normalize(path): |
| 25 | unquoted = urllib.parse.unquote(path, errors='surrogateescape') |
| 26 | return urllib.parse.quote(unquoted, errors='surrogateescape') |
| 27 | |
| 28 | def normalize_path(path): |
| 29 | path, sep, query = path.partition('?') |
no test coverage detected
searching dependent graphs…