view src/testdir/test_short_sleep.py @ 19607:d24e6844aabd v8.2.0360

patch 8.2.0360: yaml files are only recognized by the file extension Commit: https://github.com/vim/vim/commit/8eab73132838e977092d7b46f70b4ecf6274fd6a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 6 22:25:56 2020 +0100 patch 8.2.0360: yaml files are only recognized by the file extension Problem: Yaml files are only recognized by the file extension. Solution: Check for a line starting with "%YAML". (Jason Franklin)
author Bram Moolenaar <Bram@vim.org>
date Fri, 06 Mar 2020 22:30:04 +0100
parents 191ccece2f5d
children
line wrap: on
line source

#!/usr/bin/python
#
# Program that sleeps for 100 msec
#
# This requires Python 2.6 or later.

import time

if __name__ == "__main__":

    time.sleep(0.1)  # sleep 100 msec