Mercurial > vim
view src/testdir/test_channel_write.py @ 14548:806e1a2648c6 v8.1.0287
patch 8.1.0287: MAX is not defined everywhere
commit https://github.com/vim/vim/commit/37b15568c26e669c333903a70422eacc09488f79
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Aug 14 22:08:25 2018 +0200
patch 8.1.0287: MAX is not defined everywhere
Problem: MAX is not defined everywhere.
Solution: Define MAX where needed.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 14 Aug 2018 22:15:05 +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