Home | History | Annotate | Download | only in distutils

Lines Matching full:regex

197         'pattern' is assumed to be either a string containing a regex or a
198 regex object -- no translation is done, the regex is just compiled
208 self.debug_print("include_pattern: applying regex r'%s'" %
233 self.debug_print("exclude_pattern: applying regex r'%s'" %
272 a string containing the regex. Differs from 'fnmatch.translate()' in
285 # we're using a regex to manipulate a regex, so we need
295 expression. Return the compiled regex. If 'is_regex' true,
296 then 'pattern' is directly compiled to a regex (if it's a string)
297 or just returned as-is (assumes it's a regex object).