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

@ -63,7 +63,7 @@ class ThreadedTempFileTest(unittest.TestCase):
t.join()
ok += t.ok_count
if t.error_count:
errors.append(str(t.getName()) + str(t.errors.getvalue()))
errors.append(str(t.get_name()) + str(t.errors.getvalue()))
threading_cleanup(*thread_info)