John Abel <[EMAIL PROTECTED]> writes: > Unfortunately not. verify_request is called before process_request > which launches the thread ( in the ThreadingMixIn version ). Unless I > passed the flag as an argument to the thread, and then had it reset. > Hmmmmm, worth thinking about,
If verify_request is finished before the new thread starts, then I'd think it could set a flag and the new thread could find it. You get a race condition only if both threads are trying to mess with the flag simultaneously. -- http://mail.python.org/mailman/listinfo/python-list