summaryrefslogtreecommitdiff
path: root/dummyserver/server.py
diff options
context:
space:
mode:
authorQuentin Pradet <quentin.pradet@gmail.com>2019-10-29 16:54:17 +0400
committerSeth Michael Larson <sethmichaellarson@gmail.com>2019-10-29 07:54:17 -0500
commit11d68efa7c150823472f0e5309c3a08a1a10c2f2 (patch)
treedbf88bbcde057ec2363320f855bb35ab91addd79 /dummyserver/server.py
parent1733719676ea30f62dae29ab837c29b548108926 (diff)
downloadurllib3-11d68efa7c150823472f0e5309c3a08a1a10c2f2.tar.gz
Update urllib3/requests GitHub URLs (#1719)
Diffstat (limited to 'dummyserver/server.py')
-rwxr-xr-xdummyserver/server.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dummyserver/server.py b/dummyserver/server.py
index 1f899269..621a1dc3 100755
--- a/dummyserver/server.py
+++ b/dummyserver/server.py
@@ -86,7 +86,7 @@ def _has_ipv6(host):
# has_ipv6 returns true if cPython was compiled with IPv6 support.
# It does not tell us if the system has IPv6 support enabled. To
# determine that we must bind to an IPv6 address.
- # https://github.com/shazow/urllib3/pull/611
+ # https://github.com/urllib3/urllib3/pull/611
# https://bugs.python.org/issue658327
try:
sock = socket.socket(socket.AF_INET6)
@@ -102,7 +102,7 @@ def _has_ipv6(host):
# Some systems may have IPv6 support but DNS may not be configured
# properly. We can not count that localhost will resolve to ::1 on all
-# systems. See https://github.com/shazow/urllib3/pull/611 and
+# systems. See https://github.com/urllib3/urllib3/pull/611 and
# https://bugs.python.org/issue18792
HAS_IPV6_AND_DNS = _has_ipv6("localhost")
HAS_IPV6 = _has_ipv6("::1")