Home
last modified time | relevance | path

Searched refs:_portprog (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Lib/urllib/
Dparse.py1086 _portprog = None variable
1089 global _portprog
1090 if _portprog is None:
1091 _portprog = re.compile('(.*):([0-9]*)', re.DOTALL)
1093 match = _portprog.fullmatch(host)
/external/python/cpython2/Lib/
Durllib.py1132 _portprog = None variable
1135 global _portprog
1136 if _portprog is None:
1138 _portprog = re.compile('^(.*):([0-9]*)$')
1140 match = _portprog.match(host)