view src/testdir/test_short_sleep.py @ 13744:d6553cde1292 v8.0.1744

patch 8.0.1744: on some systems /dev/stdout isn't writable commit https://github.com/vim/vim/commit/9980b37a80dc72eef05bf8862aaf475ab17790a5 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 21 20:12:35 2018 +0200 patch 8.0.1744: on some systems /dev/stdout isn't writable Problem: On some systems /dev/stdout isn't writable. Solution: Skip test if writing is not possible. (James McCoy, closes https://github.com/vim/vim/issues/2830)
author Christian Brabandt <cb@256bit.org>
date Sat, 21 Apr 2018 20:15:08 +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