Home | History | Annotate | Download | only in test

Lines Matching refs:csetch

298                     csetch = chr(csetval & 0xff)
300 csetch = chr(csetval >> 24) + chr((csetval >> 16) & 0xff) + \
303 csetch = chr(csetval >> 16) + \
306 csetch = chr(csetval >> 8) + chr(csetval & 0xff)
313 urt_wa[unich] = csetch
315 self._testpoint(csetch, unich)
330 def _testpoint(self, csetch, unich):
331 if (csetch, unich) not in self.pass_enctest:
333 self.assertEqual(unich.encode(self.encoding), csetch)
336 repr(unich), repr(csetch), exc.reason))
337 if (csetch, unich) not in self.pass_dectest:
339 self.assertEqual(csetch.decode(self.encoding), unich)
342 repr(csetch), repr(unich), exc.reason))