view src/testdir/test_short_sleep.py @ 28863:92736a673e3c v8.2.4954

patch 8.2.4954: inserting line breaks text property spanning two lines Commit: https://github.com/vim/vim/commit/698cb4c8fa16a4dbe4830648532c09d7e5c89095 Author: LemonBoy <thatlemon@gmail.com> Date: Sat May 14 18:10:15 2022 +0100 patch 8.2.4954: inserting line breaks text property spanning two lines Problem: Inserting line breaks text property spanning more then one line. Solution: Check TP_FLAG_CONT_PREV and TP_FLAG_CONT_NEXT. (closes https://github.com/vim/vim/issues/10423)
author Bram Moolenaar <Bram@vim.org>
date Sat, 14 May 2022 19: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