提交 e2d7e7c6 编写于 作者: M Michal Privoznik

python: Adapt to virevent rename

With our recent renames under src/util/* we forgot to adapt
python wrapper code generator. This results in some methods being
not exposed:

$ python examples/domain-events/events-python/event-test.py
Using uri:qemu:///system
Traceback (most recent call last):
  File "examples/domain-events/events-python/event-test.py", line 585, in <module>
    main()
  File "examples/domain-events/events-python/event-test.py", line 543, in main
    virEventLoopPureStart()
  File "examples/domain-events/events-python/event-test.py", line 416, in virEventLoopPureStart
    virEventLoopPureRegister()
  File "examples/domain-events/events-python/event-test.py", line 397, in virEventLoopPureRegister
    libvirt.virEventRegisterImpl(virEventAddHandleImpl,
AttributeError: 'module' object has no attribute 'virEventRegisterImpl'
上级 a14768c9
......@@ -132,7 +132,7 @@ class docParser(xml.sax.handler.ContentHandler):
if tag == 'function':
if self.function != None:
if (self.function_module == "libvirt" or
self.function_module == "event" or
self.function_module == "virevent" or
self.function_module == "virterror"):
function(self.function, self.function_descr,
self.function_return, self.function_args,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册