commit | 47bbea712415e79ee224d21e518470ec70477d41 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Jan 29 02:56:05 2015 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Thu Jan 29 02:56:05 2015 +0100 |
tree | 93434368046d4a68f30404adfb29b100cb1d6298 | |
parent | 7b5a900e88a046b01eebafdc98ee23d531c101d3 [diff] |
asyncio: sync with Tulip * _SelectorTransport constructor: extra parameter is now optional * Fix _SelectorDatagramTransport constructor. Only start reading after connection_made() has been called. * Fix _SelectorSslTransport.close(). Don't call protocol.connection_lost() if protocol.connection_made() was not called yet: if the SSL handshake failed or is still in progress. The close() method can be called if the creation of the connection is cancelled, by a timeout for example.