MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

Lib/urllib/parse.py:887–889  ·  view source on GitHub ↗

safe: bytes object.

(self, safe)

Source from the content-addressed store, hash-verified

885 # Keeps a cache internally, via __missing__, for efficiency (lookups
886 # of cached keys don't call Python code at all).
887 def __init__(self, safe):
888 """safe: bytes object."""
889 self.safe = _ALWAYS_SAFE.union(safe)
890
891 def __repr__(self):
892 return f"<Quoter {dict(self)!r}>"

Callers

nothing calls this directly

Calls 1

unionMethod · 0.45

Tested by

no test coverage detected