摘要: chown -R python.python /xxxx 阅读全文
posted @ 2013-01-18 16:16 践道者 阅读(212) 评论(0) 推荐(0) 编辑
摘要: #coding=utf8import Queueq = Queue.LifoQueue()for i in range(5): q.put(i)while not q.empty(): print q.get()print #coding=utf8import Queue, threadingq = Queue.PriorityQueue()class Job(object): def __init__(self, priority, description): self.priority = priority self.description... 阅读全文
posted @ 2013-01-18 01:27 践道者 阅读(189) 评论(0) 推荐(0) 编辑