We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 91e2085 + fc8788b commit 856ebdeCopy full SHA for 856ebde
docs/scenarios/speed.rst
@@ -108,7 +108,7 @@ keywords compared to the next one, which is implemented in pure Python:
108
def primes(kmax):
109
"""Calculation of prime numbers in standard Python syntax"""
110
111
- p= range(1000)
+ p = range(1000)
112
result = []
113
if kmax > 1000:
114
kmax = 1000
@@ -145,7 +145,7 @@ to be compiled into C types while also creating a Python list:
145
146
147
148
149
150
151
What is the difference? In the upper Cython version you can see the
0 commit comments