Radostin Stoyanov 978fb25ac7 Wrap keys(), values() in a list
In Python 3 dict.values() [1] , dict.keys() [2] and dict.items() [3]
return a view [4] of the dictionary’s values, keys and items.

In Python 2 these functions return a list. [5] [6] [7]

To resolve this we can convert the result of these function to a list.

[1] https://docs.python.org/3/library/stdtypes.html#dict.values
[2] https://docs.python.org/3/library/stdtypes.html#dict.keys
[3] https://docs.python.org/3/library/stdtypes.html#dict.items
[4] https://docs.python.org/3/library/stdtypes.html#dict-views
[5] https://docs.python.org/2/library/stdtypes.html#dict.items
[6] https://docs.python.org/2/library/stdtypes.html#dict.keys
[7] https://docs.python.org/2/library/stdtypes.html#dict.values
2018-02-06 18:49:17 -05:00
..
2018-02-06 18:49:17 -05:00
2017-08-11 00:01:38 +08:00
2018-02-06 18:49:17 -05:00
2018-02-06 18:49:17 -05:00
2018-01-27 15:30:17 -05:00
2018-02-06 18:49:17 -05:00
2018-01-27 15:30:17 -05:00
2018-02-06 18:49:17 -05:00
2018-01-27 15:30:17 -05:00
2018-02-06 18:49:17 -05:00
2018-01-27 15:30:17 -05:00
2017-10-20 13:18:31 -04:00
2017-08-11 00:01:38 +08:00
2018-01-27 15:30:17 -05:00
2018-02-06 18:49:17 -05:00
2018-02-06 18:49:17 -05:00
2016-08-11 10:14:30 -04:00
2018-02-06 18:49:17 -05:00
2018-02-06 18:49:17 -05:00
2017-10-21 23:26:16 +08:00
2017-10-21 23:26:16 +08:00