From 8baab3c8d7a6f22888bd581cd5c6098fd2e4b5a8 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 04:44:24 +0200 Subject: Adding upstream version 2:8.1.0875. Signed-off-by: Daniel Baumann --- src/testdir/test_short_sleep.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/testdir/test_short_sleep.py (limited to 'src/testdir/test_short_sleep.py') diff --git a/src/testdir/test_short_sleep.py b/src/testdir/test_short_sleep.py new file mode 100644 index 0000000..a290443 --- /dev/null +++ b/src/testdir/test_short_sleep.py @@ -0,0 +1,11 @@ +#!/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 -- cgit v1.2.3