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:
@@ -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":
|
||||
|
||||
Reference in New Issue
Block a user