]> granicus.if.org Git - python/commitdiff
fix typeset of vertical bar for PDF format
authorFred Drake <fdrake@acm.org>
Wed, 19 Jan 2005 07:24:34 +0000 (07:24 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 19 Jan 2005 07:24:34 +0000 (07:24 +0000)
(closes SF bug #1008998)

Doc/lib/libsets.tex

index 6d49b16e9d13a8c4ba4185eac419e527193f5ef7..8085ab1d48eb6901dbbb832a36ac4e57796d548c 100644 (file)
@@ -79,7 +79,7 @@ the following operations:
          {test whether every element in \var{t} is in \var{s}}
 
   \hline
-  \lineiii{\var{s}.union(\var{t})}{\var{s} | \var{t}}
+  \lineiii{\var{s}.union(\var{t})}{\var{s} \textbar{} \var{t}}
          {new set with elements from both \var{s} and \var{t}}
   \lineiii{\var{s}.intersection(\var{t})}{\var{s} \&\ \var{t}}
          {new set with elements common to \var{s} and \var{t}}
@@ -131,7 +131,7 @@ but not found in \class{ImmutableSet}:
 
 \begin{tableiii}{c|c|l}{code}{Operation}{Equivalent}{Result}
   \lineiii{\var{s}.union_update(\var{t})}
-         {\var{s} |= \var{t}}
+         {\var{s} \textbar= \var{t}}
          {return set \var{s} with elements added from \var{t}}
   \lineiii{\var{s}.intersection_update(\var{t})}
          {\var{s} \&= \var{t}}