view src/testdir/test_short_sleep.py @ 32405:a258b40ad561 v9.0.1534

patch 9.0.1534: test for expanding "~" in substitute takes too long Commit: https://github.com/vim/vim/commit/916d6dd5b1834293e21a72ef70175aae57e78fba Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 9 21:45:47 2023 +0100 patch 9.0.1534: test for expanding "~" in substitute takes too long Problem: Test for expanding "~" in substitute takes too long. Solution: Disable the test for now.
author Bram Moolenaar <Bram@vim.org>
date Tue, 09 May 2023 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