(safe)
| 1091 | # Expectation: A typical program is unlikely to create more than 5 of these. |
| 1092 | @functools.lru_cache |
| 1093 | def _byte_quoter_factory(safe): |
| 1094 | return _Quoter(safe).__getitem__ |
| 1095 | |
| 1096 | def quote_from_bytes(bs, safe='/'): |
| 1097 | """Like quote(), but accepts a bytes object rather than a str, and does |
no test coverage detected
searching dependent graphs…