Home
last modified time | relevance | path

Searched refs:_a85chars (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Lib/
Dbase64.py281 _a85chars = None variable
327 global _a85chars, _a85chars2
330 if _a85chars is None:
331 _a85chars = [bytes((i,)) for i in range(33, 118)]
332 _a85chars2 = [(a + b) for a in _a85chars for b in _a85chars]
334 result = _85encode(b, _a85chars, _a85chars2, pad, True, foldspaces)
/external/python/cpython3/Doc/library/
Dtracemalloc.rst233 _a85chars2 = [(a + b) for a in _a85chars for b in _a85chars]