have got following python script

import dbus.service
import gobject
import yum

def main():
    print "in main"

if __name__ == "__main__":
    main()

The exit status is 0 when script is executed. But every time it outputs following exception

Exception AttributeError: "'NoneType' object has no attribute 'px_proxy_factory_free'" in <bound method ProxyFactory.__del__ of <libproxy.ProxyFactory object at 0xa081dec>> ignored

Can somebody point me what is the reason ?

link|improve this question

68% accept rate
Have you tried running it with python -m pdb myscript.py? – Adam Wagner Oct 4 '11 at 12:22
Actually yes, I've passed through all lines and they are OK. Only when I quit the debugger I got the same error again. – deimus Oct 4 '11 at 12:28
I don't know if this can help, but I tried your code and had "no module called "yum"" The I removed the import, and it run fine. So, it is probably in there. Do you have such a module ? Can you import it on the python command-line ? – Louis Oct 4 '11 at 12:30
Also if I comment out import yum it starts working without exception. But I haven't touched any yum sources ... and have no idea why this happens ... – deimus Oct 4 '11 at 12:31
2  
This is clearly an error of module yum which happens either during its initialization at import time or during its shutdown if it registers an exit hook. – 9000 Oct 4 '11 at 12:44
show 2 more comments
feedback

1 Answer

Here's an even simpler script that should give the same error:

import yum

This means there's either a bug in yum or the module was not installed correctly (it might be missing dependencies).

link|improve this answer
Actually not. A simple script containing import yum works OK with no exception. – deimus Oct 4 '11 at 13:28
If I comment out import gobject and move import yum to the top it also will work without printing the exception. – deimus Oct 4 '11 at 13:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.