view src/testdir/test_channel_write.py @ 35070:15a991b0cc27 v9.1.0379

patch 9.1.0379: There are a few typos Commit: https://github.com/vim/vim/commit/75a73551a17919ab218c625a769ba97c6b2f95cc Author: zeertzjq <zeertzjq@outlook.com> Date: Sun Apr 28 16:20:55 2024 +0200 patch 9.1.0379: There are a few typos Problem: There are a few typos Solution: Fix them (zeertzjq) closes: #14655 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 28 Apr 2024 16:30:09 +0200
parents 5cd9ba96561d
children
line wrap: on
line source

#!/usr/bin/python
#
# Program that writes a number to stdout repeatedly
#
# This requires Python 2.6 or later.

from __future__ import print_function
import sys
import time

if __name__ == "__main__":

    done = 0
    while done < 10:
        done = done + 1
        print(done)
        sys.stdout.flush()
        time.sleep(0.05)  # sleep 50 msec