[issue38148] Add slots to asyncio transports

2019-09-13 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue38148] Add slots to asyncio transports

2019-09-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 6638c9226066205a646e18da95b33e619d784b0b by Andrew Svetlov in branch '3.8': [3.8] bpo-38148: Add slots to asyncio transports (GH-16077) (GH-16093) https://github.com/python/cpython/commit/6638c9226066205a646e18da95b33e619d784b0b -- __

[issue38148] Add slots to asyncio transports

2019-09-13 Thread Andrew Svetlov
Change by Andrew Svetlov : -- pull_requests: +15714 pull_request: https://github.com/python/cpython/pull/16093 ___ Python tracker ___ __

[issue38148] Add slots to asyncio transports

2019-09-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 9eb35ab0d71a6bd680e84fa0f828cb634e72b681 by Andrew Svetlov in branch 'master': bpo-38148: Add slots to asyncio transports (GH-16077) https://github.com/python/cpython/commit/9eb35ab0d71a6bd680e84fa0f828cb634e72b681 --

[issue38148] Add slots to asyncio transports

2019-09-12 Thread Andrew Svetlov
Andrew Svetlov added the comment: Note, slots for protocols are provided by 3.8 already. -- ___ Python tracker ___ ___ Python-bugs-

[issue38148] Add slots to asyncio transports

2019-09-12 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +15699 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16077 ___ Python tracker ___ _

[issue38148] Add slots to asyncio transports

2019-09-12 Thread Andrew Svetlov
New submission from Andrew Svetlov : Transports are abstract interfaces. Adding slots allows using slots in transport implementations as well. If the implementation doesn't use slots -- everything keeps working. Slots can help with saving a memory footprint a little. -- components: asy