view src/testdir/test_channel_write.py @ 18287:50a16f2a54a8 v8.1.2138

patch 8.1.2138: including the build number in the Win32 binary is confusing Commit: https://github.com/vim/vim/commit/4cdbed33e467bdfed9aa90dc0f96642c91db32bb Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 12 15:02:47 2019 +0200 patch 8.1.2138: including the build number in the Win32 binary is confusing Problem: Including the build number in the Win32 binary is confusing. Solution: Only use the patchlevel.
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Oct 2019 15: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