From: Joe Wreschnig Date: Thu, 18 Mar 2010 07:29:25 +0000 (-0700) Subject: Psyco-enable the test runner. Fix a copy/paste error. X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=commitdiff_plain;h=957c866b2ee0e135016728c810fb8e802969a519;hp=ad4a740bd87e520bc0b13c0db2c332aba54cf68f Psyco-enable the test runner. Fix a copy/paste error. --- diff --git a/bulletml-runner b/bulletml-runner index ec6007b..62e9fdf 100755 --- a/bulletml-runner +++ b/bulletml-runner @@ -8,6 +8,13 @@ import pygame import bulletml +try: + import psyco +except ImportError: + pass +else: + psyco.full() + def main(argv): if not argv: raise SystemExit("Usage: %s filename ..." % sys.argv[0]) @@ -88,9 +95,9 @@ def main(argv): print " Processing: %04d: %d bullets, %d active." % ( frames, total, count) if elapsed: + seconds_per_bullet = elapsed / count + bullets_per_second = count / elapsed print " %g seconds per bullet (60Hz max: %g)." % ( - seconds_per_bullet = elapsed / count - bullets_per_second = count / elapsed seconds_per_bullet, bullets_per_second / 60) screen.fill([0, 0, 0])