diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-05-26 16:53:04 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-05-26 16:53:04 (GMT) |
commit | 877ab9bc235f3f98b6fa1a68c98e3c8968168ab3 (patch) | |
tree | b9611472ce3898a2aae7857b386d97a914af0d11 /Tools | |
parent | 584c8d4588680920fe9b52eaef54d1abc205235a (diff) | |
download | cpython-877ab9bc235f3f98b6fa1a68c98e3c8968168ab3.zip cpython-877ab9bc235f3f98b6fa1a68c98e3c8968168ab3.tar.gz cpython-877ab9bc235f3f98b6fa1a68c98e3c8968168ab3.tar.bz2 |
Add missing svn:eol-style property to text files.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/pybench/Empty.py | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/Tools/pybench/Empty.py b/Tools/pybench/Empty.py index 63c5663..9cb34ac 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 |