Mercurial > vim
view src/testdir/test_short_sleep.py @ 34637:9c1cf3d07957
Added tag v9.1.0204 for changeset c94ef945830982c9e84dda3a31530a3fbbb2af84
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 25 Mar 2024 16:45:05 +0100 |
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