Dictionaries' .keys(), .values(), and .items() don't return lists anymore, they need to get wrapped in list()
Doing some more quality control for my Python 3 port with the help of the 2to3
tool, I realized that I forgot the list()
-ification as well.
Edited by Georg Koppen