Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_multibytecodec_support.py296 csetch = chr(csetval & 0xff)
298 csetch = chr(csetval >> 24) + chr((csetval >> 16) & 0xff) + \
301 csetch = chr(csetval >> 16) + \
304 csetch = chr(csetval >> 8) + chr(csetval & 0xff)
311 urt_wa[unich] = csetch
313 self._testpoint(csetch, unich)
328 def _testpoint(self, csetch, unich): argument
329 if (csetch, unich) not in self.pass_enctest:
331 self.assertEqual(unich.encode(self.encoding), csetch)
334 repr(unich), repr(csetch), exc.reason))
[all …]