From: Georg Brandl Date: Fri, 12 Mar 2010 09:57:43 +0000 (+0000) Subject: Get rid of backticks. X-Git-Tag: v2.7b1~383 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=554272743a597cfde468fbc0dd200859a6648b56;p=python Get rid of backticks. --- diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index 9c458da414..4b0c3d3236 100644 --- a/Doc/faq/library.rst +++ b/Doc/faq/library.rst @@ -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)