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.
1 parent cef32da commit 8358530Copy full SHA for 8358530
examples/c_extension_example/src/__main__.py
@@ -15,9 +15,9 @@ def main():
15
# if the jit-accelerated function is only run once, it is much slower
16
# than if it had not been accelerated. This is due to the extra compile-step.
17
for _ in range(1_000_000):
18
- fib(limit=1_000_000)
+ fib(1_000_000)
19
20
- print(f"Result is {fib(limit=1_000_000)=}")
+ print(f"Result is {fib(1_000_000)=}")
21
print(f"Time taken: {time.perf_counter() - initial}")
22
23
0 commit comments