commit | 369d5a85bb782ecf63c5bae9686c7e6104eea991 | [log] [tgz] |
---|---|---|
author | Marc Hartmayer <mhartmay@linux.vnet.ibm.com> | Tue Jan 09 13:27:04 2018 +0100 |
committer | Paolo Bonzini <pbonzini@redhat.com> | Sat Feb 24 01:43:40 2018 +0100 |
tree | 224a1ffa29e984ecb85dc213bdf6d4293c2bffaf | |
parent | 0eb578009a1d530a11846d7c4733a5db04730884 [diff] |
tools/kvm_stat: avoid 'is' for equality checks Use '==' for equality checks and 'is' when comparing identities. An example where '==' and 'is' behave differently: >>> a = 4242 >>> a == 4242 True >>> a is 4242 False Signed-off-by: Marc Hartmayer <mhartmay@linux.vnet.ibm.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>