diff options
author | Cole Robinson <crobinso@redhat.com> | 2010-02-17 15:55:46 -0500 |
---|---|---|
committer | Cole Robinson <crobinso@redhat.com> | 2010-02-17 16:15:57 -0500 |
commit | 555abf6ad9753193a50ab0810b754db86bc82610 (patch) | |
tree | 9dc1e421b09a96c174438931368721907c570b2d | |
parent | 84bc8ee00e945223bebc4376aaf24fc2d96390c2 (diff) | |
download | libvirt-python-v6-555abf6ad9753193a50ab0810b754db86bc82610.tar.gz libvirt-python-v6-555abf6ad9753193a50ab0810b754db86bc82610.tar.xz libvirt-python-v6-555abf6ad9753193a50ab0810b754db86bc82610.zip |
python: Actually add virConnectGetVersion to generated bindings
The recent commit to implement a python version of this function
didn't drop an explicit 'ignore' check in the generator, so this
never ended up in the bindings.
-rwxr-xr-x | generator.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/generator.py b/generator.py index 37c0169..24eaf50 100755 --- a/generator.py +++ b/generator.py @@ -319,7 +319,6 @@ skip_function = ( 'virConnectListDomains', # Python API is called virConectListDomainsID for unknown reasons 'virConnSetErrorFunc', # Not used in Python API XXX is this a bug ? 'virResetError', # Not used in Python API XXX is this a bug ? - 'virConnectGetVersion', # Not used in Python API XXX is this a bug ? 'virGetVersion', # Python C code is manually written 'virSetErrorFunc', # Python API is called virRegisterErrorHandler for unknown reasons 'virConnCopyLastError', # Python API is called virConnGetLastError instead |