safe: bytes object.
(self, safe)
| 1005 | # Keeps a cache internally, via __missing__, for efficiency (lookups |
| 1006 | # of cached keys don't call Python code at all). |
| 1007 | def __init__(self, safe): |
| 1008 | """safe: bytes object.""" |
| 1009 | self.safe = _ALWAYS_SAFE.union(safe) |
| 1010 | |
| 1011 | def __repr__(self): |
| 1012 | return f"<Quoter {dict(self)!r}>" |