view src/testdir/test_short_sleep.py @ 24025:edcb6cf55a26 v8.2.2554

patch 8.2.2554: Vim9: exporting a final is not tested Commit: https://github.com/vim/vim/commit/0f2a5cc68b676b56694c27034690a7b9ef049feb Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 27 22:33:21 2021 +0100 patch 8.2.2554: Vim9: exporting a final is not tested Problem: Vim9: exporting a final is not tested. Solution: Add a test.
author Bram Moolenaar <Bram@vim.org>
date Sat, 27 Feb 2021 22:45:03 +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