mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Remove usage of backticks.
This commit is contained in:
parent
db60d6e2aa
commit
0b70cca9f8
13 changed files with 14 additions and 16 deletions
|
@ -169,7 +169,7 @@ def demo_app(environ,start_response):
|
|||
print >>stdout
|
||||
h = environ.items(); h.sort()
|
||||
for k,v in h:
|
||||
print >>stdout, k,'=',`v`
|
||||
print >>stdout, k,'=',repr(v)
|
||||
start_response("200 OK", [('Content-Type','text/plain')])
|
||||
return [stdout.getvalue()]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue