aboutsummaryrefslogtreecommitdiff
path: root/doc/mod3.tex
diff options
context:
space:
mode:
authorSkip Montanaro <[email protected]>2021-02-16 20:14:16 -0600
committerSkip Montanaro <[email protected]>2021-02-16 20:14:16 -0600
commitc2587c76f1b416cdbecb979e54941933246bf856 (patch)
treebb61ee9128075ce22af4eafa232f13c2e5a07896 /doc/mod3.tex
parentd90761a005b24018ae237bf551515772a1de656f (diff)
downloadpython-0.9.1-patched-QoL-c2587c76f1b416cdbecb979e54941933246bf856.tar.xz
python-0.9.1-patched-QoL-c2587c76f1b416cdbecb979e54941933246bf856.zip
starting over
Diffstat (limited to 'doc/mod3.tex')
-rw-r--r--doc/mod3.tex10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/mod3.tex b/doc/mod3.tex
index d1a99b1..d37956c 100644
--- a/doc/mod3.tex
+++ b/doc/mod3.tex
@@ -19,7 +19,7 @@ The string
The string
{\tt '0123456789abcdefABCDEF'}.
\funcitem{letters}
-The concatenation of the strings
+The concatenation of the strings
{\tt lowercase}
and
{\tt uppercase}
@@ -99,7 +99,7 @@ Removes leading and trailing whitespace from the string
Converts lower case letters to upper case and vice versa.
\funcitem{upper}{s}
Convert letters to upper case.
-\funcitem{ljust(s, width), rjust(s, width), center}{s, width}
+\funcitem{ljust(s, width), rjust(s, width), center}{s, width}
%.br
These functions respectively left-justify, right-justify and center a
string in a field of given width.
@@ -252,7 +252,7 @@ Example:
[('-a', ''), ('-b', ''), ('-c', 'foo'), ('-d', 'bar')]
>>> args
['a1', 'a2']
->>>
+>>>
\end{verbatim}\ecode
The exception
{\tt getopt.error = 'getopt error'}
@@ -305,7 +305,7 @@ Read the file for details.
Suggested usage is
\bcode\begin{verbatim}
>>> from stdwinevents import *
->>>
+>>>
\end{verbatim}\ecode
\subsection{Standard Module {\tt rect}}
@@ -342,7 +342,7 @@ This makes it possible to quickly check whether a result is empty:
>>> r3 = rect.intersect(r1, r2)
>>> if r3 is rect.empty: print 'Empty intersection'
Empty intersection
->>>
+>>>
\end{verbatim}\ecode
\funcitem{is\_empty}{r}
%.br