view src/testdir/test_short_sleep.py @ 20704:487481a57366

Added tag v8.2.0905 for changeset ce55e65d7e4148c30ddff1ca310e865bddef60e5
author Bram Moolenaar <Bram@vim.org>
date Thu, 04 Jun 2020 23:00: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