Skip to content

Commit 77d9b66

Browse files
committed
[Python 3.13 Preview: GIL/JIT] Fix linter checks
1 parent 217b9e8 commit 77d9b66

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

python313-preview-gil-jit/benchmarks/gil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def benchmark(num_threads, n):
6161
if num_threads > 1:
6262
print(f"Running {num_threads} threads...", end="", flush=True)
6363
else:
64-
print(f"Running 1 thread...", end="", flush=True)
64+
print("Running 1 thread...", end="", flush=True)
6565

6666

6767
def fib(n):

python313-preview-gil-jit/benchmarks/uops.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import dis
2+
23
import _opcode
34

45
from pyinfo import print_details

0 commit comments

Comments
 (0)