Staging
v0.5.1
https://github.com/python/cpython
Revision 5bfc03f430ab13ed84c2c30f2c87e9800b5670a4 authored by Serhiy Storchaka on 19 May 2015, 08:00:07 UTC, committed by Serhiy Storchaka on 19 May 2015, 08:00:07 UTC
1 parent 6baa0a5
Raw File
Tip revision: 5bfc03f430ab13ed84c2c30f2c87e9800b5670a4 authored by Serhiy Storchaka on 19 May 2015, 08:00:07 UTC
Issue #23780: Improved error message in os.path.join() with single argument.
Tip revision: 5bfc03f
Instances.py
from pybench import Test

class CreateInstances(Test):

    version = 2.0
    operations = 3 + 7 + 4
    rounds = 80000

    def test(self):

        class c:
            pass

        class d:
            def __init__(self,a,b,c):
                self.a = a
                self.b = b
                self.c = c

        class e:
            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 range(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:
            pass

        class d:
            def __init__(self,a,b,c):
                self.a = a
                self.b = b
                self.c = c

        class e:
            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 range(self.rounds):
            pass
back to top