Skip to content

Commit b2c7a38

Browse files
dict values py3 compat
1 parent 17d6858 commit b2c7a38

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
@@ -20,7 +20,7 @@ def setup(self):
2020
self.data = self.frame.to_dict()
2121
except:
2222
self.data = self.frame.toDict()
23-
self.some_dict = self.data.values()[0]
23+
self.some_dict = list(self.data.values())[0]
2424
self.dict_list = [dict(zip(self.columns, row)) for row in self.frame.values]
2525

2626
self.data2 = dict(

0 commit comments

Comments
 (0)