Home | History | Annotate | Download | only in test

Lines Matching refs:lower_char

775         lower_char = unichr(0x1ea1) # Latin Small Letter A with Dot Bellow
778 q = p.match(lower_char)
781 p = re.compile(lower_char, re.I | re.U)
786 q = p.match(lower_char)
789 p = re.compile('(?i)' + lower_char, re.U)
794 q = p.match(lower_char)
797 p = re.compile('(?iu)' + lower_char)