view src/testdir/test_channel_write.py @ 22161:4373f3569140 v8.2.1630

patch 8.2.1630: terminal test fails Commit: https://github.com/vim/vim/commit/c98cdb3bc970f04f93b4c394b4ec94c2eb5546c3 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 6 21:13:00 2020 +0200 patch 8.2.1630: terminal test fails Problem: Terminal test fails. Solution: Correct argument to term_start(). Correct error number.
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Sep 2020 21:15:03 +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