Extremely simple python threading
Very simple way to start a thread and pass it an argument in python:
import threading
def myThread(myArg):
print 'my other thread was passed argument %d' % myArg
threading.Thread(target=myThread, args=[1234]).start()