[libvirt] [PATCH python 11/14] override: Conditionalize use of PyString_Check and PyInt_Check

2013-12-09 Thread Daniel P. Berrange
From: Daniel P. Berrange berra...@redhat.com The PyString and PyInt classes are gone in Python 3, so we must conditionalize their use to be Python 2 only. Signed-off-by: Daniel P. Berrange berra...@redhat.com --- libvirt-override.c | 6 ++ 1 file changed, 6 insertions(+) diff --git

Re: [libvirt] [PATCH python 11/14] override: Conditionalize use of PyString_Check and PyInt_Check

2013-12-09 Thread Doug Goldstein
On Mon, Dec 9, 2013 at 9:15 AM, Daniel P. Berrange berra...@redhat.com wrote: From: Daniel P. Berrange berra...@redhat.com The PyString and PyInt classes are gone in Python 3, so we must conditionalize their use to be Python 2 only. Signed-off-by: Daniel P. Berrange berra...@redhat.com ---