fix more threading API related bugs

This commit is contained in:
Benjamin Peterson 2008-06-13 02:00:47 +00:00
parent 2d9a086410
commit b03ca4bc68
9 changed files with 27 additions and 27 deletions

View file

@ -9,7 +9,7 @@ import time
from pprint import pprint
try:
from threading import Thread, currentThread
from threading import Thread, current_thread
have_threads = 1
except ImportError:
have_threads = 0