bpo-32157: Removed explicit quotes around %r and {!r}. (#4582)

This commit is contained in:
Serhiy Storchaka 2017-11-28 22:54:42 +02:00 committed by GitHub
parent c615be5166
commit a4a3020abc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -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: