cloudy_vision
cloudy_vision copied to clipboard
python 2/3 compatibility
I made changes to make this code both python2 and python3 compatible. I replaced the iteritems
with items
- it doesn't do the same thing, but for very small lists (as the ones in this code) performance impact is insignificant. And of course, results are equal.
Also added list in front of zip
to make in work in python3 (where zip returns a iterable ZipObject
).
Thank you for the several pull requests you have submitted!
I will take a look at them this weekend and write back or merge away.