Skip to content

Commit c78237a

Browse files
Update pyperformance/data-files/benchmarks/bm_deepcopy/run_benchmark.py
Co-authored-by: Eric Snow <[email protected]>
1 parent 1c432b5 commit c78237a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyperformance/data-files/benchmarks/bm_deepcopy/run_benchmark.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ def benchmark(n):
2525
_ = copy.deepcopy(a)
2626
for s in ['red', 'blue', 'green']:
2727
dc.string = s
28-
for ii in range(10):
29-
dc.lst[0] = ii
28+
for kk in range(10):
29+
dc.lst[0] = kk
3030
for b in [True, False]:
3131
dc.boolean = b
3232
_ = copy.deepcopy(dc)

0 commit comments

Comments
 (0)