We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 135d060 commit b45a4c0Copy full SHA for b45a4c0
tests/test_base.py
@@ -348,8 +348,8 @@ def test_debug_slow_timer_callbacks(self):
348
# format message
349
msg = log.call_args[0][0] % log.call_args[0][1:]
350
351
- # self.assertIn('Executing <Handle', msg)
352
- # self.assertIn('test_debug_slow_callbacks', msg)
+ self.assertIn('Executing <TimerHandle', msg)
+ self.assertIn('test_debug_slow_timer_callbacks', msg)
353
354
def test_default_exc_handler_callback(self):
355
self.loop._process_events = mock.Mock()
uvloop/cbhandles.pyx
@@ -166,7 +166,6 @@ cdef class TimerHandle:
166
if self.timer is None:
167
return
168
169
- self.callback = None
170
self.args = None
171
172
try:
0 commit comments