Lines Matching refs:code
135 def __setitem__(self, index, code):
136 self.data[index] = code
137 def insert(self, index, code):
138 self.data.insert(index, code)
139 def append(self, code):
140 self.data.append(code)
227 # handle escape code inside character class
228 code = ESCAPES.get(escape)
229 if code:
230 return code
231 code = CATEGORIES.get(escape)
232 if code and code[0] == IN:
233 return code
259 # handle escape code in expression
260 code = CATEGORIES.get(escape)
261 if code:
262 return code
263 code = ESCAPES.get(escape)
264 if code:
265 return code
668 code = _escape(source, this, state)
669 subpatternappend(code)