diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2013-10-15 16:48:51 +0100 |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2013-10-15 16:48:51 +0100 |
commit | b46fe797355d21fbf5c091abf25a0d9145976e5d (patch) | |
tree | db16d962be136ade0b17e53323158110173784e6 /Lib/test/test_multiprocessing.py | |
parent | c3a9b3558833e03ec32c77b96b46dccb847d5ef0 (diff) | |
download | cpython-git-b46fe797355d21fbf5c091abf25a0d9145976e5d.tar.gz |
Print process instead of pid.
Diffstat (limited to 'Lib/test/test_multiprocessing.py')
-rw-r--r-- | Lib/test/test_multiprocessing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index 2b3ddcfcda..d5582aab82 100644 --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -298,7 +298,7 @@ class _TestProcess(BaseTestCase): if hasattr(signal, 'alarm'): def handler(*args): - raise RuntimeError('join took too long: pid=%s' % p.pid) + raise RuntimeError('join took too long: %s' % p) old_handler = signal.signal(signal.SIGALRM, handler) try: signal.alarm(10) |