]> granicus.if.org Git - python/commitdiff
Get rid of backticks.
authorGeorg Brandl <georg@python.org>
Fri, 12 Mar 2010 09:57:43 +0000 (09:57 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 12 Mar 2010 09:57:43 +0000 (09:57 +0000)
Doc/faq/library.rst

index 9c458da414a3db3a5e6c4f5bb9cf1e9c573d0f5d..4b0c3d323695ae6130c40fcd7032cab68d3bc008 100644 (file)
@@ -205,7 +205,7 @@ without curses::
        while 1:
            try:
                c = sys.stdin.read(1)
-               print "Got character", `c`
+               print "Got character", repr(c)
            except IOError: pass
    finally:
        termios.tcsetattr(fd, termios.TCSAFLUSH, oldterm)