safe: bytes object.
(self, safe)
| 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}>" |