[issue21437] document that asyncio.ProactorEventLoop doesn't support SSL

2014-07-08 Thread STINNER Victor
STINNER Victor added the comment: Done in these commits: New changeset 3f1381e3a68f by Victor Stinner in branch '3.4': Issue #21680: Document asyncio event loops http://hg.python.org/cpython/rev/3f1381e3a68f New changeset 2c9d5f32f6c5 by Victor Stinner in branch 'default': (Merge 3.4) Issue #21

[issue21437] document that asyncio.ProactorEventLoop doesn't support SSL

2014-06-06 Thread STINNER Victor
STINNER Victor added the comment: The first problem is that event loops are not documented at all: I created the issue #21680 to document them. -- ___ Python tracker ___ ___

[issue21437] document that asyncio.ProactorEventLoop doesn't support SSL

2014-06-06 Thread STINNER Victor
Changes by STINNER Victor : -- components: +Asyncio ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue21437] document that asyncio.ProactorEventLoop doesn't support SSL

2014-05-12 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +gvanrossum, haypo, yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue21437] document that asyncio.ProactorEventLoop doesn't support SSL

2014-05-05 Thread akira
New submission from akira: In Lib/asyncio/proactor_events.py:419 [1]: def _start_serving(self, protocol_factory, sock, ssl=None, server=None): if ssl: raise ValueError('IocpEventLoop is incompatible with SSL.') [1]: http://hg.python.org/cpython/file/4f26430b03fd/Lib/asyncio/proacto