diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-10-12 18:36:04 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-10-12 18:36:04 (GMT) |
commit | 33f6abe4ae7b1fa6d83e26c4dafc0210c09d2254 (patch) | |
tree | 92360117f04ea4d3a6181e9153bf4fefe2936588 /Doc/library/asyncio-eventloops.rst | |
parent | ed051594d70fe4c6b170aee667af4e32dfe6b867 (diff) | |
download | cpython-33f6abe4ae7b1fa6d83e26c4dafc0210c09d2254.zip cpython-33f6abe4ae7b1fa6d83e26c4dafc0210c09d2254.tar.gz cpython-33f6abe4ae7b1fa6d83e26c4dafc0210c09d2254.tar.bz2 |
asyncio doc: reformat create_server() doc
Fix also the reate_unix_connection() doc: the method is not support on Windows,
not need to mention that ssl is not support with ProactorEventLoop.
Diffstat (limited to 'Doc/library/asyncio-eventloops.rst')
-rw-r--r-- | Doc/library/asyncio-eventloops.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-eventloops.rst b/Doc/library/asyncio-eventloops.rst index 282cc4b..b871083 100644 --- a/Doc/library/asyncio-eventloops.rst +++ b/Doc/library/asyncio-eventloops.rst @@ -76,7 +76,7 @@ Windows Common limits of Windows event loops: -- :meth:`~BaseEventLoop.create_unix_server` and +- :meth:`~BaseEventLoop.create_unix_connection` and :meth:`~BaseEventLoop.create_unix_server` are not supported: the socket family :data:`socket.AF_UNIX` is specific to UNIX - :meth:`~BaseEventLoop.add_signal_handler` and |