0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-04 10:18:52 +02:00

Use more helpful variable names

This commit is contained in:
Erik Johnston 2015-08-18 11:47:00 +01:00
parent 891dfd90bd
commit d3da63f766

View file

@ -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