From: Tim Peters Date: Fri, 26 May 2006 16:53:04 +0000 (+0000) Subject: Add missing svn:eol-style property to text files. X-Git-Tag: v2.5b1~456 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=877ab9bc235f3f98b6fa1a68c98e3c8968168ab3;p=python Add missing svn:eol-style property to text files. --- diff --git a/Tools/pybench/Empty.py b/Tools/pybench/Empty.py index 63c566387c..9cb34ac3b0 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