mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Remove usage of backticks.
This commit is contained in:
parent
db60d6e2aa
commit
0b70cca9f8
13 changed files with 14 additions and 16 deletions
|
@ -605,7 +605,7 @@ text:
|
|||
... if isinstance(piece, doctest.Example):
|
||||
... print 'Example:', (piece.source, piece.want, piece.lineno)
|
||||
... else:
|
||||
... print ' Text:', `piece`
|
||||
... print ' Text:', repr(piece)
|
||||
Text: '\n'
|
||||
Example: ('x, y = 2, 3 # no output expected\n', '', 1)
|
||||
Text: ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue