Searched refs:_re (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Lib/ |
H A D | string.py | 52 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 D | argparse.py | 89 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__.py | 5 import re as _re namespace 118 _charref = _re.compile(r'&(#[0-9]+;?'
|
/third_party/python/Lib/tomllib/ |
H A D | _parser.py | 12 from ._re import (
|
Completed in 5 milliseconds