diff options
author | Marc-André Lemburg <mal@egenix.com> | 2006-06-13 17:07:14 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2006-06-13 17:07:14 (GMT) |
commit | 573bd19e1fbcddb707d93899640d656626998a8c (patch) | |
tree | d7711d0dfd4956ce9807352c3460fd8adc39c533 /Tools/pybench/pybench-2.0/NewInstances.py | |
parent | 08de1ef8dfe06680efdbf620b40904e755a60f42 (diff) | |
download | cpython-573bd19e1fbcddb707d93899640d656626998a8c.zip cpython-573bd19e1fbcddb707d93899640d656626998a8c.tar.gz cpython-573bd19e1fbcddb707d93899640d656626998a8c.tar.bz2 |
Revert wrong svn copy.
Diffstat (limited to 'Tools/pybench/pybench-2.0/NewInstances.py')
-rw-r--r-- | Tools/pybench/pybench-2.0/NewInstances.py | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/Tools/pybench/pybench-2.0/NewInstances.py b/Tools/pybench/pybench-2.0/NewInstances.py deleted file mode 100644 index 258beba..0000000 --- a/Tools/pybench/pybench-2.0/NewInstances.py +++ /dev/null @@ -1,75 +0,0 @@ -from pybench import Test - -# Check for new-style class support: -try: - class c(object): - pass -except NameError: - raise ImportError - -### - -class CreateNewInstances(Test): - - version = 2.0 - operations = 3 + 7 + 4 - rounds = 60000 - - def test(self): - - class c(object): - pass - - class d(object): - def __init__(self,a,b,c): - self.a = a - self.b = b - self.c = c - - class e(object): - def __init__(self,a,b,c=4): - self.a = a - self.b = b - self.c = c - self.d = a - self.e = b - self.f = c - - for i in xrange(self.rounds): - o = c() - o1 = c() - o2 = c() - p = d(i,i,3) - p1 = d(i,i,3) - p2 = d(i,3,3) - p3 = d(3,i,3) - p4 = d(i,i,i) - p5 = d(3,i,3) - p6 = d(i,i,i) - q = e(i,i,3) - q1 = e(i,i,3) - q2 = e(i,i,3) - q3 = e(i,i) - - def calibrate(self): - - class c(object): - pass - - class d(object): - def __init__(self,a,b,c): - self.a = a - self.b = b - self.c = c - - class e(object): - def __init__(self,a,b,c=4): - self.a = a - self.b = b - self.c = c - self.d = a - self.e = b - self.f = c - - for i in xrange(self.rounds): - pass |