Skip to content

Commit f429607

Browse files
xrange -> range
1 parent 863585a commit f429607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asv_bench/benchmarks/frame_ctor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def setup(self):
2525

2626
self.data2 = dict(
2727
((i, dict(((j, float(j)) for j in range(100)))) for i in
28-
xrange(2000)))
28+
range(2000)))
2929

3030
def time_frame_ctor_list_of_dict(self):
3131
DataFrame(self.dict_list)

0 commit comments

Comments
 (0)