view src/testdir/test_short_sleep.py @ 16355:1964349f162c

Added tag v8.1.1182 for changeset b3bc3ba07bef8f17cdf0797f8ac402616f9102e5
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Apr 2019 18:30: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