diff options
author | Gregory P. Smith <greg@krypto.org> | 2017-09-09 07:30:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-09 07:30:15 (GMT) |
commit | efb1d0a3c001a6153211063ba439b9847aa03509 (patch) | |
tree | fdfc7187242eb8db236c5b2445b73c61e88b429f /Lib/asyncore.py | |
parent | 829dacce4fca60fc3c3367980e75e21dfcdbe6be (diff) | |
download | cpython-efb1d0a3c001a6153211063ba439b9847aa03509.zip cpython-efb1d0a3c001a6153211063ba439b9847aa03509.tar.gz cpython-efb1d0a3c001a6153211063ba439b9847aa03509.tar.bz2 |
bpo-29639: change test.support.HOST to "localhost"
test.support.HOST should be "localhost" as it was in the past. See the bpo-29639.
Tests that need the IP address should use HOSTv4 (added) or the existing HOSTv6 constant.
This changes the definition and fixes tests that needed updating to deal with HOST being
the hostname rather than the hardcoded IP address.
This is only the first step in addressing https://bugs.python.org/issue29639.
Diffstat (limited to 'Lib/asyncore.py')
-rw-r--r-- | Lib/asyncore.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/asyncore.py b/Lib/asyncore.py index 03d1683..828f4d4 100644 --- a/Lib/asyncore.py +++ b/Lib/asyncore.py @@ -287,7 +287,6 @@ class dispatcher: def set_socket(self, sock, map=None): self.socket = sock -## self.__dict__['socket'] = sock self._fileno = sock.fileno() self.add_channel(map) |