1
0
mirror of https://gitlab.com/libvirt/libvirt-python.git synced 2025-07-30 23:41:52 +03:00

+Tue May 29 15:56:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>

+
+       * python/generator.py, python/libvir.c, python/libvir.py:
+         Wrap the virGetVersion call as Python libvirt.getVersion.
+
+       * src/libvirt.c: Change virGetVersion so that the driver name
+         is case insensitive.
+
This commit is contained in:
Richard W.M. Jones
2007-05-29 14:58:27 +00:00
parent 33af9b643a
commit b599903eb2
3 changed files with 70 additions and 0 deletions

View File

@ -287,6 +287,8 @@ def skip_function(name):
return 1
if name == "vshRunConsole":
return 1
if name == "virGetVersion":
return 1
return 0
def print_function_wrapper(name, output, export, include):