view src/testdir/test_short_sleep.py @ 28943:17ca7f6f60ab

Added tag v8.2.4993 for changeset 6cdf55afaae90f1695514acc7f8d202e5f915d51
author Bram Moolenaar <Bram@vim.org>
date Sat, 21 May 2022 21: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