view src/testdir/test_short_sleep.py @ 25496:3fd9892abbcb

Added tag v8.2.3284 for changeset 7144d2ffc86be688dac74e9aa3fa3f5bdc3dd08e
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 Aug 2021 19:30: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