Removes left-over print statements

This commit is contained in:
Ask Solem 2016-09-06 15:09:03 -07:00
parent fb2160af40
commit d118517915
1 changed files with 0 additions and 3 deletions

View File

@ -325,10 +325,7 @@ class MultiChannelPoller(object):
def on_readable(self, fileno): def on_readable(self, fileno):
chan, type = self._fd_to_chan[fileno] chan, type = self._fd_to_chan[fileno]
if chan.qos.can_consume(): if chan.qos.can_consume():
print('CALLING %r' % (chan.handlers[type],))
chan.handlers[type]() chan.handlers[type]()
else:
print('CANNOT CONSUME')
def handle_event(self, fileno, event): def handle_event(self, fileno, event):
if event & READ: if event & READ: