Searched refs:_nonprint (Results 1 – 1 of 1) sorted by relevance
317 _nonprint = {ord('%')} variable in Logfile318 _nonprint.update({c for c in range(0, 32) if c not in (9, 10)})319 _nonprint.update({c for c in range(127, 256)})335 data = ''.join((ord(c) in self._nonprint) and ('%%%02x' % ord(c)) or