[libvirt] [PATCH] Fix build of python bindings on Python 2.4

Michal Privoznik mprivozn at redhat.com
Thu May 9 13:02:12 UTC 2013


On 09.05.2013 15:01, Daniel P. Berrange wrote:
> From: "Daniel P. Berrange" <berrange at redhat.com>
> 
> The PyDict_Next method on Python <= 2.4 used 'int' instead
> of "Py_ssize_t" for the 'pos' parameter
> 
> Signed-off-by: Daniel P. Berrange <berrange at redhat.com>
> ---
>  python/libvirt-override.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/python/libvirt-override.c b/python/libvirt-override.c
> index 856789a..fd9ebb8 100644
> --- a/python/libvirt-override.c
> +++ b/python/libvirt-override.c
> @@ -152,7 +152,11 @@ setPyVirTypedParameter(PyObject *info,
>                         const virTypedParameterPtr params, int nparams)
>  {
>      PyObject *key, *value;
> +#if PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION <= 4
> +    int pos = 0;
> +#else
>      Py_ssize_t pos = 0;
> +#endif
>      virTypedParameterPtr temp = NULL, ret = NULL;
>      Py_ssize_t size;
>      int i;
> 

ACK

Michal




More information about the libvir-list mailing list