show/hide this revision's text 2 Clarification that callback methods aren't the only way to do it.
from threading import Thread
# ... your code    

calcthread = Thread(target=longcalc)
timethread = Thread(target=longtime)

print "tic"
calcthread.start()
print "toc"
timethread.start()
print "tic"

Have a look at the python threading docs for more information about multithreading in python.

A word of warning about multithreading: it can be hard. Very hard. Debugging multithreaded software can lead to some of the worst experiences you will ever have as a software developer.

So before you delve into the world of potential deadlocks and race conditions, be absolutely sure that it makes sense to convert your synchronous USB interactions into ansynchronous ones. Specifically, ensure that any code dependent upon the async code is executed after it has been completed (via a callback method or something similar).

show/hide this revision's text 1
from threading import Thread
# ... your code    

calcthread = Thread(target=longcalc)
timethread = Thread(target=longtime)

print "tic"
calcthread.start()
print "toc"
timethread.start()
print "tic"

Have a look at the python threading docs for more information about multithreading in python.