]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix building python bindings: Skip bindings for virSaveLastError and
authorCole Robinson <crobinso@redhat.com>
Mon, 16 Feb 2009 22:44:49 +0000 (22:44 +0000)
committerCole Robinson <crobinso@redhat.com>
Mon, 16 Feb 2009 22:44:49 +0000 (22:44 +0000)
virFreeError

ChangeLog
python/generator.py

index 6aae1c153408bf7d5cd96874708203afa525f750..587429383de3ea1b68ae52cb6dca7f05e46f7a3c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Feb 16 17:53:24 EST 2009 Cole Robinson <crobinso@redhat.com>
+
+       * python/generate.py: Skip bindings for virSaveLastError and
+       virFreeError
+
 Fri Feb 13 19:04:57 IST 2009 Mark McLoughlin <markmc@redhat.com>
 
        * src/libvirt_private.syms, src/util.[ch]: add
index 9c71c0597fceef73c066868620782eae3cefef28..0e8cca72cc29fe7008d0b36540015000f5dd0a01 100755 (executable)
@@ -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
 )