From 877ab9bc235f3f98b6fa1a68c98e3c8968168ab3 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Fri, 26 May 2006 16:53:04 +0000 Subject: [PATCH] Add missing svn:eol-style property to text files. --- Tools/pybench/Empty.py | 44 +++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/Tools/pybench/Empty.py b/Tools/pybench/Empty.py index 63c566387c4..9cb34ac3b07 100755 --- a/Tools/pybench/Empty.py +++ b/Tools/pybench/Empty.py @@ -1,22 +1,22 @@ -from pybench import Test - -class EmptyTest(Test): - """This is just here as a potential measure of repeatability.""" - - version = 0.3 - operations = 1 - rounds = 60000 - - def test(self): - - l = [] - for i in xrange(self.rounds): - pass - - - def calibrate(self): - - l = [] - - for i in xrange(self.rounds): - pass +from pybench import Test + +class EmptyTest(Test): + """This is just here as a potential measure of repeatability.""" + + version = 0.3 + operations = 1 + rounds = 60000 + + def test(self): + + l = [] + for i in xrange(self.rounds): + pass + + + def calibrate(self): + + l = [] + + for i in xrange(self.rounds): + pass