summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-09-21 16:41:05 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-09-21 16:41:05 (GMT)
commit7b58a2bb1d904850293694b01de3bd21344d0ff2 (patch)
tree65f199e66392a6e1f3e1a12c1ac95e66ca8c3f57 /Lib/asyncio/events.py
parent04ce06b6129eb0acb0b45f48fd239ce60c44ecf8 (diff)
parent5e4a7d8dc7781a4c0dfacecdc4db0eb34beb1391 (diff)
downloadcpython-7b58a2bb1d904850293694b01de3bd21344d0ff2.zip
cpython-7b58a2bb1d904850293694b01de3bd21344d0ff2.tar.gz
cpython-7b58a2bb1d904850293694b01de3bd21344d0ff2.tar.bz2
Merge 3.4 (asyncio)
Diffstat (limited to 'Lib/asyncio/events.py')
-rw-r--r--Lib/asyncio/events.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/asyncio/events.py b/Lib/asyncio/events.py
index d5f0d45..1e42ddd 100644
--- a/Lib/asyncio/events.py
+++ b/Lib/asyncio/events.py
@@ -305,7 +305,8 @@ class AbstractEventLoop:
If host is an empty string or None all interfaces are assumed
and a list of multiple sockets will be returned (most likely
- one for IPv4 and another one for IPv6).
+ one for IPv4 and another one for IPv6). The host parameter can also be a
+ sequence (e.g. list) of hosts to bind to.
family can be set to either AF_INET or AF_INET6 to force the
socket to use IPv4 or IPv6. If not set it will be determined