view src/testdir/test_short_sleep.py @ 25394:3a8b61b31724 v8.2.3234

patch 8.2.3234: crash when printing long string with Lua Commit: https://github.com/vim/vim/commit/78e006b9b02fac94c910445d842f6dc5331fa57a Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 28 15:07:01 2021 +0200 patch 8.2.3234: crash when printing long string with Lua Problem: Crash when printing long string with Lua. Solution: Remove lua_pop(). (Martin Tournoij, closes https://github.com/vim/vim/issues/8648)
author Bram Moolenaar <Bram@vim.org>
date Wed, 28 Jul 2021 15:15: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