Skip to content
Snippets Groups Projects
Commit d3da63f7 authored by Erik Johnston's avatar Erik Johnston
Browse files

Use more helpful variable names

parent 891dfd90
No related branches found
No related tags found
No related merge requests found
......@@ -163,11 +163,11 @@ def runUntilCurrentTimer(func):
# _newTimedCalls is one long list of *all* pending calls. Below loop
# is based off of impl of reactor.runUntilCurrent
for p in reactor._newTimedCalls:
if p.time > now:
for delayed_call in reactor._newTimedCalls:
if delayed_call.time > now:
break
if p.delayed_time > 0:
if delayed_call.delayed_time > 0:
continue
num_pending += 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment