[issue35394] Add __slots__ = () to asyncio protocols

2018-12-18 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue35394] Add __slots__ = () to asyncio protocols

2018-12-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 5344501ad166c1380be452644a863a4679c4291b by Andrew Svetlov in branch 'master': bpo-35394: Add empty slots to abstract asyncio protocols (#10889) https://github.com/python/cpython/commit/5344501ad166c1380be452644a863a4679c4291b --

[issue35394] Add __slots__ = () to asyncio protocols

2018-12-04 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +10127 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue35394] Add __slots__ = () to asyncio protocols

2018-12-03 Thread Andrew Svetlov
New submission from Andrew Svetlov : Protocols have no members. Adding empty slots doesn't harm any existing code but it allows to write proper protocol implementation with slot-based class. -- components: asyncio messages: 330986 nosy: asvetlov, yselivanov priority: normal severity: