view src/testdir/test_short_sleep.py @ 21468:df10f1df515d

Added tag v8.2.1284 for changeset 49072a858baf495b5c8f3f84799057c135a54400
author Bram Moolenaar <Bram@vim.org>
date Thu, 23 Jul 2020 20:15: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