diff options
author | Cole Robinson <crobinso@redhat.com> | 2009-02-16 22:44:49 +0000 |
---|---|---|
committer | Cole Robinson <crobinso@redhat.com> | 2009-02-16 22:44:49 +0000 |
commit | 05665cda467c3594bd7d1c7fbbcdc4ed6617787a (patch) | |
tree | 2522de74b02830d5076dbee649d618f45b5e3412 | |
parent | d6d8338a07b39e19ef8243cbbea48617096bfba1 (diff) | |
download | libvirt-python-05665cda467c3594bd7d1c7fbbcdc4ed6617787a.tar.gz |
Fix building python bindings: Skip bindings for virSaveLastError and
virFreeError
-rwxr-xr-x | generator.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/generator.py b/generator.py index 9c71c05..0e8cca7 100755 --- a/generator.py +++ b/generator.py @@ -344,6 +344,8 @@ skip_function = ( 'virDefaultErrorFunc', # Python virErrorFuncHandler impl calls this from C 'virConnectDomainEventRegister', # overridden in virConnect.py 'virConnectDomainEventDeregister', # overridden in virConnect.py + 'virSaveLastError', # We have our own python error wrapper + 'virFreeError', # Only needed if we use virSaveLastError ) |