Mercurial > vim
view src/testdir/test_channel_write.py @ 31950:b0717fcca5eb v9.0.1307
patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Commit: https://github.com/vim/vim/commit/32ff96ef018eb1a5bea0953648b4892a6ee71658
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Mon Feb 13 16:10:04 2023 +0000
patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Problem: Setting 'formatoptions' with :let doesn't check for errors.
Solution: Pass "errbuf" to set_string_option(). (Yegappan Lakshmanan,
closes #11974, closes #11972)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 13 Feb 2023 17:15: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