view src/testdir/test_short_sleep.py @ 19753:cf2885e38afd

Added tag v8.2.0432 for changeset 0927df746554c87a4d37d64bc8fb2b48095431f5
author Bram Moolenaar <Bram@vim.org>
date Mon, 23 Mar 2020 19:30:07 +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