diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-11-28 20:54:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-28 20:54:42 (GMT) |
commit | a4a3020abc065d40f57069d6c69d02222ddc85d6 (patch) | |
tree | 204e84c1c4050c001f9d0f1fa8c8f509e4fd8e2e /Lib/test/test_queue.py | |
parent | c615be5166ed338c052fa67fe781b9bfe0dfb78c (diff) | |
download | cpython-a4a3020abc065d40f57069d6c69d02222ddc85d6.zip cpython-a4a3020abc065d40f57069d6c69d02222ddc85d6.tar.gz cpython-a4a3020abc065d40f57069d6c69d02222ddc85d6.tar.bz2 |
bpo-32157: Removed explicit quotes around %r and {!r}. (#4582)
Diffstat (limited to 'Lib/test/test_queue.py')
-rw-r--r-- | Lib/test/test_queue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_queue.py b/Lib/test/test_queue.py index 35466c1..6ee906c 100644 --- a/Lib/test/test_queue.py +++ b/Lib/test/test_queue.py @@ -54,7 +54,7 @@ class BlockingTestMixin: self.result = block_func(*block_args) # If block_func returned before our thread made the call, we failed! if not thread.startedEvent.is_set(): - self.fail("blocking function '%r' appeared not to block" % + self.fail("blocking function %r appeared not to block" % block_func) return self.result finally: |