MCPcopy Index your code
hub / github.com/clips/pattern / decode_url

Function decode_url

pattern/web/__init__.py:842–843  ·  view source on GitHub ↗
(string)

Source from the content-addressed store, hash-verified

840def encode_url(string):
841 return urllib.quote_plus(bytestring(string)) # "black/white" => "black%2Fwhite".
842def decode_url(string):
843 return urllib.unquote_plus(string)
844
845RE_SPACES = re.compile("( |\xa0)+", re.M) # Matches one or more spaces.
846RE_TABS = re.compile(r"\t+", re.M) # Matches one or more tabs.

Callers 2

searchMethod · 0.85
nameMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…