Sophie

Sophie

distrib > Mageia > 6 > x86_64 > by-pkgid > 09408f3c1571cbb746da49a1d2f22702 > files > 2730

python-twisted-17.5.0-1.mga6.x86_64.rpm


"""
Benchmarks for L{twisted.internet.task}.
"""
from __future__ import print_function

from timer import timeit

from twisted.internet import task

def test_performance():
    """
    L{LoopingCall} should not take long to skip a lot of iterations.
    """
    clock = task.Clock()
    call = task.LoopingCall(lambda: None)
    call.clock = clock

    call.start(0.1)
    clock.advance(1000000)


def main():
    print("LoopingCall large advance takes", timeit(test_performance, iter=1))

if __name__ == '__main__':
    main()