diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-05-28 18:50:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-28 18:50:45 (GMT) |
commit | bc3a002e7d5a921e233a5ee0b0f5610c6510b647 (patch) | |
tree | 7ba7161a4106d7f50f925b1fdd04fbbc95579048 /Lib/test/test_asyncio/test_buffered_proto.py | |
parent | f8fdb368e3d8d048bffc248fbe1023651c276671 (diff) | |
download | cpython-bc3a002e7d5a921e233a5ee0b0f5610c6510b647.zip cpython-bc3a002e7d5a921e233a5ee0b0f5610c6510b647.tar.gz cpython-bc3a002e7d5a921e233a5ee0b0f5610c6510b647.tar.bz2 |
bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)
In this commit:
* Support BufferedProtocol in set_protocol() and start_tls()
* Fix proactor to cancel readers reliably
* Update tests to be compatible with OpenSSL 1.1.1
* Clarify BufferedProtocol docs
* Bump TLS tests timeouts to 60 seconds; eliminate possible race from start_serving
* Rewrite test_start_tls_server_1
(cherry picked from commit dbf102271fcc316f353c7e0a283811b661d128f2)
Co-authored-by: Yury Selivanov <yury@magic.io>
Diffstat (limited to 'Lib/test/test_asyncio/test_buffered_proto.py')
-rw-r--r-- | Lib/test/test_asyncio/test_buffered_proto.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_buffered_proto.py b/Lib/test/test_asyncio/test_buffered_proto.py index 22f9269..89d3df7 100644 --- a/Lib/test/test_asyncio/test_buffered_proto.py +++ b/Lib/test/test_asyncio/test_buffered_proto.py @@ -9,7 +9,7 @@ class ReceiveStuffProto(asyncio.BufferedProtocol): self.cb = cb self.con_lost_fut = con_lost_fut - def get_buffer(self): + def get_buffer(self, sizehint): self.buffer = bytearray(100) return self.buffer |