[issue22560] New SSL implementation based on ssl.MemoryBIO

2015-03-23 Thread Berker Peksag
Changes by Berker Peksag : -- stage: patch review -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue22560] New SSL implementation based on ssl.MemoryBIO

2015-01-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3c37825d85d3 by Victor Stinner in branch '3.4': Issue #22560: Fix typo: call -> call_soon https://hg.python.org/cpython/rev/3c37825d85d3 -- ___ Python tracker

[issue22560] New SSL implementation based on ssl.MemoryBIO

2015-01-15 Thread STINNER Victor
STINNER Victor added the comment: Buildbots are happy. There is no remaining things to do, I close the issue. -- resolution: -> fixed status: open -> closed ___ Python tracker _

[issue22560] New SSL implementation based on ssl.MemoryBIO

2015-01-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset fb3761de0d3c by Victor Stinner in branch '3.4': Issue #22560: Fix SSLProtocol._on_handshake_complete() https://hg.python.org/cpython/rev/fb3761de0d3c -- ___ Python tracker

[issue22560] New SSL implementation based on ssl.MemoryBIO

2015-01-14 Thread STINNER Victor
STINNER Victor added the comment: While I tried to write an unit test to reproduce a bug (cancelled waiter), I noticed that the handshake callback of the protocol can be called indirectly from _process_write_backlog(). So _process_write_backlog() may be called indirectly from _process_write_ba

[issue22560] New SSL implementation based on ssl.MemoryBIO

2015-01-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset b9fbbe7103e7 by Victor Stinner in branch 'default': Issue #22560, asyncio doc: ProactorEventLoop now supports SSL! https://hg.python.org/cpython/rev/b9fbbe7103e7 -- ___ Python tracker

[issue22560] New SSL implementation based on ssl.MemoryBIO

2015-01-13 Thread STINNER Victor
STINNER Victor added the comment: I commited sslproto-4.patch to Python 3.4, Python 3.5 and Tulip with minor changes: - remove write_eof(), as suggested by Yury - define SSLProtocol after its transport in sslproto.py - add a docstring to SSLProtocol - test sslcontext with "is not None" - _make_

[issue22560] New SSL implementation based on ssl.MemoryBIO

2015-01-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 432b817611f2 by Victor Stinner in branch '3.4': Issue #22560: New SSL implementation based on ssl.MemoryBIO https://hg.python.org/cpython/rev/432b817611f2 -- nosy: +python-dev ___ Python tracker

[issue22560] New SSL implementation based on ssl.MemoryBIO

2015-01-09 Thread STINNER Victor
Changes by STINNER Victor : -- title: Add loop-agnostic SSL implementation to asyncio -> New SSL implementation based on ssl.MemoryBIO ___ Python tracker ___ ___