summaryrefslogtreecommitdiffstats
path: root/generator.py
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2006-02-23 11:26:17 +0000
committerDaniel Veillard <veillard@redhat.com>2006-02-23 11:26:17 +0000
commit2ce9e08fac637cb6a19e5244027b118dbed708c2 (patch)
tree0fac58555ce1d3828590b09b13a089abadd6498f /generator.py
parent9000be07f8575994c143c6d19e7c4de395588582 (diff)
downloadlibvirt-python-split-2ce9e08fac637cb6a19e5244027b118dbed708c2.tar.gz
libvirt-python-split-2ce9e08fac637cb6a19e5244027b118dbed708c2.tar.xz
libvirt-python-split-2ce9e08fac637cb6a19e5244027b118dbed708c2.zip
* src/libvirt.c: fixing a bug before the release of 0.0.5v0.0.5
* python/generator.py python/libvir.c python/libvirt-python-api.xml: also fixing the binding for getting a domain UUID * python/tests/Makefile.am python/tests/uuid.py: added a test for the new UUID API Daniel
Diffstat (limited to 'generator.py')
-rwxr-xr-xgenerator.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/generator.py b/generator.py
index c336f61..d9fa809 100755
--- a/generator.py
+++ b/generator.py
@@ -203,7 +203,9 @@ def enum(type, name, value):
#######################################################################
functions_failed = []
-functions_skipped = []
+functions_skipped = [
+ "virConnectListDomains" , "virDomainGetUUID"
+]
skipped_modules = {
}
@@ -259,6 +261,7 @@ foreign_encoding_args = (
skip_impl = (
'virConnectListDomainsID',
'virDomainGetInfo',
+ 'virDomainGetUUID',
)
def skip_function(name):
@@ -568,6 +571,8 @@ def nameFixup(name, classe, type, file):
func = name
if func == "iD":
func = "ID"
+ if func == "uUID":
+ func = "UUID"
if func == "oSType":
func = "OSType"
if func == "xMLDesc":