summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2011-06-23 11:56:54 -0600
committerEric Blake <eblake@redhat.com>2011-06-24 08:41:24 -0600
commit21ecea2e9330f25de794e8136b993414c44b6e17 (patch)
tree219d9d430bc36bdb1cb128dfbcdc4e8741ba522a /python/generator.py
parentRevert "Asynchronous event for BlockPull completion" (diff)
downloadlibvirt-21ecea2e9330f25de794e8136b993414c44b6e17.tar.gz
libvirt-21ecea2e9330f25de794e8136b993414c44b6e17.tar.bz2
libvirt-21ecea2e9330f25de794e8136b993414c44b6e17.zip
Revert "Enable virDomainBlockPull in the python API."
This reverts commit d74b86f5d6ecae3d18a391f90a918fcac75914db. Conflicts: python/generator.py
Diffstat (limited to 'python/generator.py')
-rwxr-xr-xpython/generator.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/generator.py b/python/generator.py
index 6ce6596cd..bbd150e65 100755
--- a/python/generator.py
+++ b/python/generator.py
@@ -184,6 +184,8 @@ def enum(type, name, value):
functions_failed = []
functions_skipped = [
"virConnectListDomains",
+ 'virDomainBlockPull',
+ 'virDomainGetBlockPullInfo',
]
skipped_modules = {
@@ -200,6 +202,7 @@ skipped_types = {
'virStreamEventCallback': "No function types in python",
'virEventHandleCallback': "No function types in python",
'virEventTimeoutCallback': "No function types in python",
+ 'virDomainBlockPullInfoPtr': "Not implemented yet",
}
#######################################################################
@@ -366,8 +369,6 @@ skip_impl = (
'virDomainSendKey',
'virNodeGetCPUStats',
'virNodeGetMemoryStats',
- 'virDomainBlockPull',
- 'virDomainGetBlockPullInfo',
)