Home | History | Annotate | Download | only in test

Lines Matching refs:uR

260     >>> dump_tokens("x = ur'abc' + Ur'ABC' + uR'ABC' + UR'ABC'")
263 STRING "ur'abc'" (1, 4) (1, 11)
265 STRING "Ur'ABC'" (1, 14) (1, 21)
267 STRING "uR'ABC'" (1, 24) (1, 31)
269 STRING "UR'ABC'" (1, 34) (1, 41)
270 >>> dump_tokens('y = ur"abc" + Ur"ABC" + uR"ABC" + UR"ABC"')
273 STRING 'ur"abc"' (1, 4) (1, 11)
275 STRING 'Ur"ABC"' (1, 14) (1, 21)
277 STRING 'uR"ABC"' (1, 24) (1, 31)
279 STRING 'UR"ABC"' (1, 34) (1, 41)