view src/testdir/test_short_sleep.py @ 18659:c68c1e19acfa

Added tag v8.1.2321 for changeset 0969f82fbbff35561fd049bab15f161819de5fb4
author Bram Moolenaar <Bram@vim.org>
date Mon, 18 Nov 2019 23:45:04 +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