Home
last modified time | relevance | path

Searched refs:_re (Results 1 - 4 of 4) sorted by relevance

/third_party/python/Lib/
H A Dstring.py52 import re as _re namespace
67 flags = _re.IGNORECASE
74 delim = _re.escape(cls.delimiter)
85 cls.pattern = _re.compile(pattern, cls.flags | _re.VERBOSE)
H A Dargparse.py89 import re as _re namespace
189 self._whitespace_matcher = _re.compile(r'\s+', _re.ASCII)
190 self._long_break_matcher = _re.compile(r'\n\n\n+')
339 opt_parts = _re.findall(part_regexp, opt_usage)
340 pos_parts = _re.findall(part_regexp, pos_usage)
498 text = _re.sub(r'(%s) ' % open, r'\1', text)
499 text = _re.sub(r' (%s)' % close, r'\1', text)
500 text = _re.sub(r'%s *%s' % (open, close), r'', text)
1381 self._negative_number_matcher = _re
[all...]
/third_party/python/Lib/html/
H A D__init__.py5 import re as _re namespace
118 _charref = _re.compile(r'&(#[0-9]+;?'
/third_party/python/Lib/tomllib/
H A D_parser.py12 from ._re import (

Completed in 5 milliseconds