From 148114e3258803630362d4bbae9a767134194f07 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Wed, 17 Feb 2010 15:55:46 -0500 Subject: [PATCH] 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. --- python/generator.py | 1 - 1 file changed, 1 deletion(-) 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