Python线程不能与pygobject一起使用?

时间:2013-05-01 04:54:11

标签: python asynchronous concurrency pygobject gobject

看看这个琐碎的python gobject程序:

import threading
import gobject
import time

def f():
    while True:
        print "HELLO"
        time.sleep(1)
threading.Thread(target=f).start()

gobject.MainLoop().run()

它产生一个每秒输出“HELLO”的线程,然后进入gobject主循环。问题是它实际上没有做任何事情。为什么呢?

$ python a.py 
[...]

但是,如果我按CTRL + C,它就会开始工作。此外,删除程序中的最后一行(gobject.MainLoop().run())使其工作。为什么呢?

$ python a.py 
^CTraceback (most recent call last):
  File "a.py", line 11, in <module>
    gobject.MainLoop().run()
KeyboardInterruptHELLO

HELLO
HELLO
HELLO
[...]

看看第二个程序,它与第一个程序完全相同,只是它告诉gobject每秒运行一次函数g。这种类型的工作,生成的线程每隔一段时间运行一次,而不是永远。为什么呢?

import threading
import gobject
import time

def f():
    while True:
        print "HELLO"
        time.sleep(1)
threading.Thread(target=f).start()

def g():
    print "yo"
    return True
gobject.timeout_add_seconds(1, g)

gobject.MainLoop().run()

运行它:

$ python b.py 
HELLOyo

yo
yo
yo
 HELLO
yo
yo
yo
yo
yo
yo
yo
 HELLO
yo
yo
yo
yo
^CTraceback (most recent call last):
  File "b.py", line 16, in <module>
    gobject.MainLoop().run()
KeyboardInterrupt
HELLO
HELLO
HELLO
HELLO
HELLO

再一次,点击CTRL + C会使生成的线程起作用。为什么呢?

这是使用库pygobject-2.28.6。

1 个答案:

答案 0 :(得分:2)

使用gobject时,您需要initialize threading。为此,请致电

gobject.threads_init()