Mercurial > vim
view src/testdir/test_channel_write.py @ 33761:ffe9ffcb57e7
runtime(termdebug): improve the breakpoint sign label (#13525)
Commit: https://github.com/vim/vim/commit/2dd613f57bf17eb8ff050bcb5510eb0279f5c9ab
Author: Shane-XB-Qian <shane.qian@foxmail.com>
Date: Sun Nov 12 23:53:39 2023 +0800
runtime(termdebug): improve the breakpoint sign label (https://github.com/vim/vim/issues/13525)
// related https://github.com/vim/vim/issues/12589
// that should be the last chat (I) with Bram, r.i.p
Signed-off-by: shane.xb.qian <shane.qian@foxmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 12 Nov 2023 17:00:04 +0100 |
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