1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-11-06 20:25:00 +03:00

Fix building python bindings: Skip bindings for virSaveLastError and

virFreeError
This commit is contained in:
Cole Robinson
2009-02-16 22:44:49 +00:00
parent 0bb6f816e3
commit a3d1fb9cf3
2 changed files with 7 additions and 0 deletions

View File

@@ -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
)