1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-12-20 00:24:48 +03:00

* src/libvirt.c: fixing a bug before the release of 0.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
This commit is contained in:
Daniel Veillard
2006-02-23 11:26:17 +00:00
parent 6eaf35d077
commit 97f9566687
8 changed files with 102 additions and 12 deletions

View File

@@ -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":