Fix comment typos.
This commit is contained in:
parent
579b8d5c72
commit
ca67533ce4
1 changed files with 2 additions and 2 deletions
|
@ -98,13 +98,13 @@ class TriggerHttp(BaseHTTPRequestHandler):
|
||||||
|
|
||||||
class HTTPServerV4(http.server.HTTPServer):
|
class HTTPServerV4(http.server.HTTPServer):
|
||||||
"""
|
"""
|
||||||
Server that listens to IPv4 and IPv6 requests
|
Server that listens only to IPv4 requests.
|
||||||
"""
|
"""
|
||||||
address_family = socket.AF_INET
|
address_family = socket.AF_INET
|
||||||
|
|
||||||
|
|
||||||
class HTTPServerV6(http.server.HTTPServer):
|
class HTTPServerV6(http.server.HTTPServer):
|
||||||
"""
|
"""
|
||||||
Server that listens both to IPv4 and IPv6 requests
|
Server that listens both to IPv4 and IPv6 requests.
|
||||||
"""
|
"""
|
||||||
address_family = socket.AF_INET6
|
address_family = socket.AF_INET6
|
||||||
|
|
Loading…
Reference in a new issue