Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Durllib.py825 _thishost = None variable
828 global _thishost
829 if _thishost is None:
831 _thishost = socket.gethostbyname(socket.gethostname())
833 _thishost = socket.gethostbyname('localhost')
834 return _thishost
/external/python/cpython3/Lib/urllib/
Drequest.py2330 _thishost = None variable
2333 global _thishost
2334 if _thishost is None:
2336 _thishost = tuple(socket.gethostbyname_ex(socket.gethostname())[2])
2338 _thishost = tuple(socket.gethostbyname_ex('localhost')[2])
2339 return _thishost