Lines Matching refs:string
13 # XXX: show string offset and offending character for all errors
43 r"\A": (AT, AT_BEGINNING_STRING), # start of string
52 r"\Z": (AT, AT_END_STRING), # end of string
222 def __init__(self, string):
223 self.istext = isinstance(string, str)
224 self.string = string
226 string = str(string, 'latin1')
227 self.decoded_string = string
244 self.string, len(self.string) - 1) from None
293 return error(msg, self.string, self.tell() - offset)
998 # parse 're' replacement string into list of literals and
1018 break # end of replacement string
1092 empty = match.string[:0]