[lang-ref] ( decode_uri_for_path ) ( python )

def test_decode_uri_for_path():
    # urllib.parse.unquote
    import urllib.parse
    s = urllib.parse.unquote('a%20b/c')
    assert s == 'a b/c'