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: http://git.ipfire.org/?a=commitdiff_plain;h=554272743a597cfde468fbc0dd200859a6648b56;p=thirdparty%2FPython%2Fcpython.git Get rid of backticks. --- diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index 9c458da414a3..4b0c3d323695 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)