view src/testdir/test_short_sleep.py @ 25442:18d91a0274aa

Added tag v8.2.3257 for changeset e06540cc3371823f593d2d40e519ddd9e60833f4
author Bram Moolenaar <Bram@vim.org>
date Sat, 31 Jul 2021 18:45:04 +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