blob: 36099b4f8f742079b7b56b7a662111484c16ff2e [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001ENCODINGS = {}
2
3class C:
4 def foo(self):
5 if self.id[0] == 'T':
6 encoding = ord(self.rawData[0])
7 if 0 <= encoding < len(ENCODINGS):
8 value = self.rawData[1:].decode(ENCODINGS[encoding])