view src/testdir/test_short_sleep.py @ 23359:35b42d31593d

Added tag v8.2.2222 for changeset b3142fc0a4145cafac2d3dd3d64fb6d8336345ba
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Dec 2020 15:45:05 +0100
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