Re: [PATCH v2] tools/kvm_stat: Add Python 3 support to kvm_stat

2017-10-05 Thread Radim Krčmář
2017-10-04 03:08+, Jeremy Cline: > Make kvm_stat support Python 3 by changing the use of "print" to a > function rather than a statement, switching from "iteritems" and > "iterkeys" (removed in Python 3) to "items" and "keys" respectively, > and decoding bytes to strings when dealing with text.

[PATCH v2] tools/kvm_stat: Add Python 3 support to kvm_stat

2017-10-03 Thread Jeremy Cline
Make kvm_stat support Python 3 by changing the use of "print" to a function rather than a statement, switching from "iteritems" and "iterkeys" (removed in Python 3) to "items" and "keys" respectively, and decoding bytes to strings when dealing with text. With this change, kvm_stat is usable with P