Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/urllib/
Dparse.py1005 _portprog = None variable
1008 global _portprog
1009 if _portprog is None:
1010 _portprog = re.compile('(.*):([0-9]*)$', re.DOTALL)
1012 match = _portprog.match(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)