From 2d35af171a2e7c5eb6ce7e7c2bd90cacb4ab0ce6 Mon Sep 17 00:00:00 2001 From: Taizo ITO Date: Fri, 22 Jan 2010 11:01:09 +0100 Subject: Add virConnectGetVersion Python API adds a new python API call for retrieving the running hypervisor version used by a connection: virConnectGetVersion * python/generator.py: skip virConnectGetVersion from autogenerated * python/libvirt-override-api.xml python/libvirt-override.c: define direct native bindings --- generator.py | 1 + 1 file changed, 1 insertion(+) (limited to 'generator.py') diff --git a/generator.py b/generator.py index 56f8925..4182219 100755 --- a/generator.py +++ b/generator.py @@ -255,6 +255,7 @@ foreign_encoding_args = ( # Class methods which are written by hand in libvir.c but the Python-level # code is still automatically generated (so they are not in skip_function()). skip_impl = ( + 'virConnectGetVersion', 'virConnectGetLibVersion', 'virConnectListDomainsID', 'virConnectListDefinedDomains', -- cgit