view src/testdir/test_short_sleep.py @ 21287:3fd32bf5fff0 v8.2.1194

patch 8.2.1194: test failure because shell prompt differs Commit: https://github.com/vim/vim/commit/a4dc6f92bb29b00783f8945bbe1101e837b6ad3c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 12 19:52:36 2020 +0200 patch 8.2.1194: test failure because shell prompt differs Problem: Test failure because shell prompt differs. Solution: Set the shell prompt.
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Jul 2020 20:00:03 +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