view src/testdir/test_channel_write.py @ 28349:d3a1fc6b4da6 v8.2.4700

patch 8.2.4700: buffer remains active if WinClosed event throws an exception Commit: https://github.com/vim/vim/commit/c947b9ae419114ebfef9725814ea41a466fcf879 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Apr 6 17:59:21 2022 +0100 patch 8.2.4700: buffer remains active if WinClosed event throws an exception Problem: Buffer remains active if a WinClosed event throws an exception. Solution: Ignore aborting() when closing the buffer. (closes https://github.com/vim/vim/issues/10097)
author Bram Moolenaar <Bram@vim.org>
date Wed, 06 Apr 2022 19:00:04 +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