From: Jack Jansen Date: Sun, 22 Sep 1996 22:15:20 +0000 (+0000) Subject: Finally *tested* effect of fg and bg yield values (and changed them:-) X-Git-Tag: v1.4~179 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d1069e42fe5ec73954a48c910e0e89ce663f829;p=python Finally *tested* effect of fg and bg yield values (and changed them:-) --- diff --git a/Mac/Lib/test/fgbgtimetest.py b/Mac/Lib/test/fgbgtimetest.py new file mode 100644 index 0000000000..fd2b64956c --- /dev/null +++ b/Mac/Lib/test/fgbgtimetest.py @@ -0,0 +1,17 @@ +"""fgbgtest - See how many CPU cycles we get""" + +import time + +loopct = 0L +oldloopct = 0L +oldt = time.time() + +while 1: + t = time.time() + if t - oldt >= 1: + if oldloopct: + print loopct-oldloopct,'in one second' + oldloopct = loopct + oldt = time.time() + loopct = loopct + 1 +