Brython 3.8.9 performance compared to CPython 3.8.0

User agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0

Test Brython
(100 = CPython)
Code
simple assignment66
for i in range(1000000):
    a = 1
augmented assignment77
a = 0
for i in range(1000000):
    a += 1
simple assignment to float184
for i in range(1000000):
    a = 1.0
big integers3659
for i in range(100):
    2 ** 60
build dictionary318
for i in range(1000000):
    a = {0: 0}
build dictionary 2143
d = {}
for i in range(100000):
    d[i] = i
set dictionary item132
a = {0: 0}
for i in range(1000000):
    a[0] = i
build set625
for i in range(1000000):
    a = {0, 2.7, "x"}
build list71
for i in range(1000000):
    a = [1, 2, 3]
set list item98
a = [0]
for i in range(1000000):
    a[0] = i
integer addition196
a, b, c = 1, 2, 3
for i in range(1000000):
    a + b + c
string addition142
a, b, c = 'a', 'b', 'c'
for i in range(1000000):
    a + b + c
cast int to string127
for i in range(100000):
    str(i)
create function without arguments446
for i in range(1000000):
    def f():
        pass
create function, single positional argument464
for i in range(1000000):
    def f(x):
        pass
create function, complex arguments655
for i in range(1000000):
    def f(x, y=1, *args, **kw):
        pass
function call804
def f(x):
    return x
for i in range(1000000):
    f(i)
function call, complex arguments1234
def f(x, y=0, *args, **kw):
    return x
for i in range(100000):
    f(i, 5, 6, a=8)
create simple class498
for i in range(10000):
    class A:
        pass
create class with init572
for i in range(10000):
    class A:
        def __init__(self, x):
            self.x = x
create instance of simple class241
class A:
    pass

for i in range(1000000):
    A()
create instance of class with init1123
class A:
    def __init__(self, x):
        self.x = x

for i in range(100000):
    A(i)
call instance method2551
class A:
    def __init__(self, x):
        self.x = x

    def f(self):
        return self.x

a = A(1)
for i in range(100000):
    a.f()