fork download
  1. import Queue
  2. import threading
  3.  
  4. def queue_test():
  5. Queue.Queue().get(block=True)
  6.  
  7. threading.Thread(target=queue_test).start()
  8. exit()
  9.  
Time limit exceeded #stdin #stdout 5s 19192KB
stdin
Standard input is empty
stdout
Standard output is empty