Home | History | Annotate | Download | only in idlelib

Lines Matching refs:re

1 import re
14 _synchre = re.compile(r"""
33 """, re.VERBOSE | re.MULTILINE).search
37 _junkre = re.compile(r"""
41 """, re.VERBOSE).match
44 # so that we're robust in the face of incomplete program text.
46 _match_stringre = re.compile(r"""
62 """, re.VERBOSE | re.DOTALL).match
67 _itemre = re.compile(r"""
70 """, re.VERBOSE).match
74 _closere = re.compile(r"""
83 """, re.VERBOSE).match
90 _chew_ordinaryre = re.compile(r"""
92 """, re.VERBOSE).match
172 # we're in or near a giant string, the colorizer hasn't
174 # any interesting stmts. In any of these cases we're
247 # else we're in an unclosed bracket structure
298 # didn't break out of the loop, so we're still
544 found = re.match(r"\s*\\", str[i:endpos]) is None