view src/testdir/test_channel_write.py @ 21287:3fd32bf5fff0 v8.2.1194

patch 8.2.1194: test failure because shell prompt differs Commit: https://github.com/vim/vim/commit/a4dc6f92bb29b00783f8945bbe1101e837b6ad3c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 12 19:52:36 2020 +0200 patch 8.2.1194: test failure because shell prompt differs Problem: Test failure because shell prompt differs. Solution: Set the shell prompt.
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Jul 2020 20:00: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