avoid backticks in examples; use repr() instead
diff --git a/Doc/lib/libsocket.tex b/Doc/lib/libsocket.tex
index 4470ce5..9ff5f01 100644
--- a/Doc/lib/libsocket.tex
+++ b/Doc/lib/libsocket.tex
@@ -714,7 +714,7 @@
 s.send('Hello, world')
 data = s.recv(1024)
 s.close()
-print 'Received', `data`
+print 'Received', repr(data)
 \end{verbatim}
 
 The next two examples are identical to the above two, but support both
@@ -790,5 +790,5 @@
 s.send('Hello, world')
 data = s.recv(1024)
 s.close()
-print 'Received', `data`
+print 'Received', repr(data)
 \end{verbatim}