mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
bpo-32157: Removed explicit quotes around %r and {!r}. (#4582)
This commit is contained in:
parent
c615be5166
commit
a4a3020abc
4 changed files with 6 additions and 6 deletions
|
@ -1166,7 +1166,7 @@ class IMAP4:
|
|||
self.mo = cre.match(s)
|
||||
if __debug__:
|
||||
if self.mo is not None and self.debug >= 5:
|
||||
self._mesg("\tmatched r'%r' => %r" % (cre.pattern, self.mo.groups()))
|
||||
self._mesg("\tmatched %r => %r" % (cre.pattern, self.mo.groups()))
|
||||
return self.mo is not None
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue