summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-03-12 09:57:43 (GMT)
committerGeorg Brandl <georg@python.org>2010-03-12 09:57:43 (GMT)
commit554272743a597cfde468fbc0dd200859a6648b56 (patch)
tree08bc0511d449ec95ddc5f550a6f8dab49d7e22a1
parentecfa08fdf8de5fc72d9dd891b9a6c443bdee897d (diff)
downloadcpython-554272743a597cfde468fbc0dd200859a6648b56.zip
cpython-554272743a597cfde468fbc0dd200859a6648b56.tar.gz
cpython-554272743a597cfde468fbc0dd200859a6648b56.tar.bz2
Get rid of backticks.
-rw-r--r--Doc/faq/library.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst
index 9c458da..4b0c3d3 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)