Home | History | Annotate | Download | only in test

Lines Matching refs:csetch

286                     csetch = chr(csetval & 0xff)

288 csetch = chr(csetval >> 24) + chr((csetval >> 16) & 0xff) + \
291 csetch = chr(csetval >> 16) + \
294 csetch = chr(csetval >> 8) + chr(csetval & 0xff)
301 urt_wa[unich] = csetch
303 self._testpoint(csetch, unich)
318 def _testpoint(self, csetch, unich):
319 if (csetch, unich) not in self.pass_enctest:
321 self.assertEqual(unich.encode(self.encoding), csetch)
324 repr(unich), repr(csetch), exc.reason))
325 if (csetch, unich) not in self.pass_dectest:
327 self.assertEqual(csetch.decode(self.encoding), unich)
330 repr(csetch), repr(unich), exc.reason))