MCPcopy Index your code
hub / github.com/python/cpython / decode

Method decode

Lib/urllib/parse.py:163–171  ·  view source on GitHub ↗
(self, encoding='ascii', errors='strict')

Source from the content-addressed store, hash-verified

161 __slots__ = ()
162
163 def decode(self, encoding='ascii', errors='strict'):
164 result = self._decoded_counterpart(*(x.decode(encoding, errors)
165 if x is not None else None
166 for x in self))
167 try:
168 result._keep_empty = self._keep_empty
169 except AttributeError:
170 pass
171 return result
172
173
174class _NetlocResultMixinBase(object):

Callers 9

_decode_argsFunction · 0.45
_generate_unquoted_partsFunction · 0.45
unquoteFunction · 0.45
quote_from_bytesFunction · 0.45
_to_bytesFunction · 0.45
readMethod · 0.45
proxy_openMethod · 0.45
retry_http_basic_authMethod · 0.45
http_requestMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected