mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Remove usage of backticks.
This commit is contained in:
parent
db60d6e2aa
commit
0b70cca9f8
13 changed files with 14 additions and 16 deletions
|
@ -140,7 +140,7 @@ class Headers:
|
|||
return self._headers[:]
|
||||
|
||||
def __repr__(self):
|
||||
return "Headers(%s)" % `self._headers`
|
||||
return "Headers(%r)" % self._headers
|
||||
|
||||
def __str__(self):
|
||||
"""str() returns the formatted headers, complete with end line,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue