Home | History | Annotate | Download | only in test

Lines Matching refs:uR

228         self.check_tokenize("x = ur'abc' + Ur'ABC' + uR'ABC' + UR'ABC'", """\
231 STRING "ur'abc'" (1, 4) (1, 11)
233 STRING "Ur'ABC'" (1, 14) (1, 21)
235 STRING "uR'ABC'" (1, 24) (1, 31)
237 STRING "UR'ABC'" (1, 34) (1, 41)
239 self.check_tokenize('y = ur"abc" + Ur"ABC" + uR"ABC" + UR"ABC"', """\
242 STRING 'ur"abc"' (1, 4) (1, 11)
244 STRING 'Ur"ABC"' (1, 14) (1, 21)
246 STRING 'uR"ABC"' (1, 24) (1, 31)
248 STRING 'UR"ABC"' (1, 34) (1, 41)