summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_threadedtempfile.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-06-13 02:00:47 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-06-13 02:00:47 (GMT)
commitb03ca4bc687da31942e3e9e3a923e1c4ebfc4453 (patch)
treea0f728ac9592bb20e41cee4e19ec9e1126d9868c /Lib/test/test_threadedtempfile.py
parent2d9a086410546ef86358220eab652e03cd5ae5ab (diff)
downloadcpython-b03ca4bc687da31942e3e9e3a923e1c4ebfc4453.zip
cpython-b03ca4bc687da31942e3e9e3a923e1c4ebfc4453.tar.gz
cpython-b03ca4bc687da31942e3e9e3a923e1c4ebfc4453.tar.bz2
fix more threading API related bugs
Diffstat (limited to 'Lib/test/test_threadedtempfile.py')
-rw-r--r--Lib/test/test_threadedtempfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_threadedtempfile.py b/Lib/test/test_threadedtempfile.py
index d93b382..7383467 100644
--- a/Lib/test/test_threadedtempfile.py
+++ b/Lib/test/test_threadedtempfile.py
@@ -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)