Guest User

Untitled

a guest
Dec 18th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. def function_A():
  2. # Whatever_A
  3. tThread_1 = threading.Thread(target = object1.function_1())
  4. tThread_1.start()
  5. ## Whatever_AA
  6.  
  7. def function_B():
  8. ## Whatever_B
  9.  
  10. tThread_A = threading.Thread(target = function_A)
  11. tThread_B = threading.Thread(target = function_B)
  12. object1 = object.object()
  13. tThread_A.start()
  14. tThread_B.start()
  15.  
  16. def function_1():
  17. ## Whatever_1
Add Comment
Please, Sign In to add comment