[issue16652] socket.getfqdn docs are not explicit enough about the algorithm.

2019-04-26 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue16652] socket.getfqdn docs are not explicit enough about the algorithm.

2014-07-15 Thread Mark Lawrence
Mark Lawrence added the comment: I'm assuming that this still needs doing. -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker ___

[issue16652] socket.getfqdn docs are not explicit enough about the algorithm.

2012-12-09 Thread R. David Murray
New submission from R. David Murray: >From the docs it isn't quite clear if getfqnd() does the equivalent of: gethostbyaddr('127.0.0.1') or gethostbyaddr(gethostbyname(gethostname())) It matters which it is, when debugging a host's name configuration and DNS server problems. --