view src/testdir/test_short_sleep.py @ 14365:e8c4114adecb

Added tag v8.1.0197 for changeset d876b85887310590f282391944c9227f9e8624cd
author Christian Brabandt <cb@256bit.org>
date Fri, 20 Jul 2018 05:15:05 +0200
parents 191ccece2f5d
children
line wrap: on
line source

#!/usr/bin/python
#
# Program that sleeps for 100 msec
#
# This requires Python 2.6 or later.

import time

if __name__ == "__main__":

    time.sleep(0.1)  # sleep 100 msec