任意の洞察力、私は以下のコードを持っていますが、キューが空になった後、それは上の住んでいる:私はスレッドを持っているだけで何もしないが立っているとして、それが何回も空のキューを印刷しスレッドの寿命をPythonで終わらせますか?
def processor():
while(1>0):
if queue.empty() == True:
print "the Queue is empty!"
break
source=queue.get()
page = urllib2.urlopen(source)
print page
def main:
for i in range(threads):
th = Thread(target=processor)
th.setDaemon(True)
th.start()
queue.join()
。マックスが言ったように
インデントを修正し、完全な例を投稿してください。 – NPE