view src/testdir/test_short_sleep.py @ 22625:0afa30d6dc72 v8.2.1861

patch 8.2.1861: Vim9: no specific error when parsing lambda fails Commit: https://github.com/vim/vim/commit/a2c026d0fd470d68d679616fddfc285cb4834412 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 18 18:03:17 2020 +0200 patch 8.2.1861: Vim9: no specific error when parsing lambda fails Problem: Vim9: no specific error when parsing lambda fails. Solution: Also give syntax errors when not evaluating. (closes https://github.com/vim/vim/issues/7154)
author Bram Moolenaar <Bram@vim.org>
date Sun, 18 Oct 2020 18:15: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