Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dbase64.py274 _a85chars = None variable
320 global _a85chars, _a85chars2
323 if _a85chars is None:
324 _a85chars = [bytes((i,)) for i in range(33, 118)]
325 _a85chars2 = [(a + b) for a in _a85chars for b in _a85chars]
327 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]