I'm doing some work with the Red Hat bugzilla and really need the performance increase of calling getbugs with a big list of bugs instead of letting it do the multicall. So I figure I'd just pass multicall=False to the constructor, but it fails:
TypeError: __init__() got an unexpected keyword argument 'multicall'
I have limited understanding of python, but it seems that the kwargs get passed all the way down to BugzillaBase.__init__ which bails if it gets anything other than user, password, url or cookiefile.
Also, I really need to get flags back from getbugs, which requires you pass an extra_fields argument containing 'flags'. Is it at all possible to do this with python-bugzilla or should I just bypass it and make an xmlrpc call myself?
- J<