From: Cole Robinson Date: Wed, 17 Feb 2010 20:55:46 +0000 (-0500) Subject: python: Actually add virConnectGetVersion to generated bindings X-Git-Tag: v0.7.7~140 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=148114e3258803630362d4bbae9a767134194f07;p=thirdparty%2Flibvirt.git python: Actually add virConnectGetVersion to generated bindings The recent commit to implement a python version of this function didn't drop an explicit 'ignore' check in the generator, so this never ended up in the bindings. --- diff --git a/python/generator.py b/python/generator.py index 37c0169ec4..24eaf502d4 100755 --- a/python/generator.py +++ b/python/generator.py @@ -319,7 +319,6 @@ skip_function = ( 'virConnectListDomains', # Python API is called virConectListDomainsID for unknown reasons 'virConnSetErrorFunc', # Not used in Python API XXX is this a bug ? 'virResetError', # Not used in Python API XXX is this a bug ? - 'virConnectGetVersion', # Not used in Python API XXX is this a bug ? 'virGetVersion', # Python C code is manually written 'virSetErrorFunc', # Python API is called virRegisterErrorHandler for unknown reasons 'virConnCopyLastError', # Python API is called virConnGetLastError instead