Python线程的终止方法

发布时间:2019-09-01 10:44:52编辑:auto阅读(2394)

    a=M()
    a.start()
    print dir(a)
    import time
    time.sleep(3)
    import signal
    a._Thread__stop()
    

    print a._Thread__stopped True | False

关键字