[Python-checkins] r46360 - python/trunk/Tools/pybench/Empty.py python/trunk/Tools/pybench/NewInstances.py

tim.peters python-checkins at python.org
Fri May 26 18:53:04 CEST 2006


Author: tim.peters
Date: Fri May 26 18:53:04 2006
New Revision: 46360

Modified:
   python/trunk/Tools/pybench/Empty.py   (contents, props changed)
   python/trunk/Tools/pybench/NewInstances.py   (props changed)
Log:
Add missing svn:eol-style property to text files.


Modified: python/trunk/Tools/pybench/Empty.py
==============================================================================
--- python/trunk/Tools/pybench/Empty.py	(original)
+++ python/trunk/Tools/pybench/Empty.py	Fri May 26 18:53:04 2006
@@ -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


More information about the Python-checkins mailing list