From a4a3020abc065d40f57069d6c69d02222ddc85d6 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 28 Nov 2017 22:54:42 +0200 Subject: bpo-32157: Removed explicit quotes around %r and {!r}. (#4582) --- Lib/test/test_queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_queue.py') diff --git a/Lib/test/test_queue.py b/Lib/test/test_queue.py index 35466c1eae..6ee906c4d2 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: -- cgit v1.2.1