Commit 0eeba2ea authored by David Wilson's avatar David Wilson

core: include fds in Waker repr

parent 7a061fe1
......@@ -1016,7 +1016,11 @@ class Waker(BasicStream):
self.transmit_side = Side(self, wfd)
def __repr__(self):
return 'Waker(%r)' % (self._broker,)
return 'Waker(%r rfd=%r, wfd=%r)' % (
self._broker,
self.receive_side.fd,
self.transmit_side.fd,
)
def on_receive(self, broker):
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment