summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/transports.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-05 14:27:41 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-11-05 14:27:41 (GMT)
commit004adb91f6e05ac711b0554bbd0415a48fed623c (patch)
tree9325ab7de23395c0ceac21cf41c49be001be4240 /Lib/asyncio/transports.py
parent7e8b8678f141d4e8198002972219895280b2d62d (diff)
downloadcpython-004adb91f6e05ac711b0554bbd0415a48fed623c.zip
cpython-004adb91f6e05ac711b0554bbd0415a48fed623c.tar.gz
cpython-004adb91f6e05ac711b0554bbd0415a48fed623c.tar.bz2
asyncio: Move loop attribute to _FlowControlMixin
Move the _loop attribute from the constructor of _SelectorTransport, _ProactorBasePipeTransport and _UnixWritePipeTransport classes to the constructor of the _FlowControlMixin class. Add also an assertion to explicit that the parent class must ensure that the loop is defined (not None)
Diffstat (limited to 'Lib/asyncio/transports.py')
-rw-r--r--Lib/asyncio/transports.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/asyncio/transports.py b/Lib/asyncio/transports.py
index 3caf853..22df3c7 100644
--- a/Lib/asyncio/transports.py
+++ b/Lib/asyncio/transports.py
@@ -238,8 +238,10 @@ class _FlowControlMixin(Transport):
resume_writing() may be called.
"""
- def __init__(self, extra=None):
+ def __init__(self, extra=None, loop=None):
super().__init__(extra)
+ assert loop is not None
+ self._loop = loop
self._protocol_paused = False
self._set_write_buffer_limits()