Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f831663

Browse files
committed
Rob W. W. Hooft's spelling fixes for the Library Reference. I hope
SourceForge doesn't choke on this batch :-) I'm not entirely sure this is 100% correct. The patch changes an \index{persistency} to \index{presistence}, and I don't know what \index{} does. But it seems to do so persi--er, consistently, so I hope it isn't a problem.
1 parent 0e19e76 commit f831663

61 files changed

Lines changed: 92 additions & 92 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Doc/lib/liballos.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ \chapter{Generic Operating System Services \label{allos}}
22

33
The modules described in this chapter provide interfaces to operating
44
system features that are available on (almost) all operating systems,
5-
such as files and a clock. The interfaces are generally modelled
5+
such as files and a clock. The interfaces are generally modeled
66
after the \UNIX{} or C interfaces, but they are available on most
77
other systems as well. Here's an overview:
88

Doc/lib/libascii.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ \section{\module{curses.ascii} ---
1818
\lineii{NUL}{}
1919
\lineii{SOH}{Start of heading, console interrupt}
2020
\lineii{STX}{Start of text}
21-
\lineii{ETX}{Ennd of text}
21+
\lineii{ETX}{End of text}
2222
\lineii{EOT}{End of transmission}
2323
\lineii{ENQ}{Enquiry, goes with \constant{ACK} flow control}
2424
\lineii{ACK}{Acknowledgement}

Doc/lib/libasyncore.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ \section{\module{asyncore} ---
107107
Each time through the \method{select()} loop, the set of sockets
108108
is scanned, and this method is called to see if there is any
109109
interest in writing. The default method simply returns \code{1},
110-
indiciating that by default, all channels will be interested.
110+
indicating that by default, all channels will be interested.
111111
\end{methoddesc}
112112

113113
In addition, there are the basic methods needed to construct and

Doc/lib/libaudioop.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ \section{\module{audioop} ---
151151
\end{funcdesc}
152152

153153
\begin{funcdesc}{mul}{fragment, width, factor}
154-
Return a fragment that has all samples in the original framgent
154+
Return a fragment that has all samples in the original fragment
155155
multiplied by the floating-point value \var{factor}. Overflow is
156156
silently ignored.
157157
\end{funcdesc}
@@ -161,7 +161,7 @@ \section{\module{audioop} ---
161161
Convert the frame rate of the input fragment.
162162

163163
\var{state} is a tuple containing the state of the converter. The
164-
converter returns a tupl \code{(\var{newfragment}, \var{newstate})},
164+
converter returns a tuple \code{(\var{newfragment}, \var{newstate})},
165165
and \var{newstate} should be passed to the next call of
166166
\function{ratecv()}.
167167

Doc/lib/libbasehttp.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ \section{\module{BaseHTTPServer} ---
9090

9191
\begin{memberdesc}{wfile}
9292
Contains the output stream for writing a response back to the client.
93-
Proper adherance to the HTTP protocol must be used when writing
93+
Proper adherence to the HTTP protocol must be used when writing
9494
to this stream.
9595
\end{memberdesc}
9696

@@ -115,7 +115,7 @@ \section{\module{BaseHTTPServer} ---
115115
Specifies a format string for building an error response to the
116116
client. It uses parenthesized, keyed format specifiers, so the
117117
format operand must be a dictionary. The \var{code} key should
118-
be an integer, specifing the numeric HTTP error code value.
118+
be an integer, specifying the numeric HTTP error code value.
119119
\var{message} should be a string containing a (detailed) error
120120
message of what occurred, and \var{explain} should be an
121121
explanation of the error code number. Default \var{message}

Doc/lib/libbinascii.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ \section{\module{binascii} ---
1111
representations. Normally, you will not use these functions directly
1212
but use wrapper modules like \refmodule{uu}\refstmodindex{uu} or
1313
\refmodule{binhex}\refstmodindex{binhex} instead, this module solely
14-
exists because bit-manipuation of large amounts of data is slow in
14+
exists because bit-manipulation of large amounts of data is slow in
1515
Python.
1616

1717
The \module{binascii} module defines the following functions:

Doc/lib/libcd.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ \section{\module{cd} ---
8686
\end{datadesc}
8787

8888
\begin{datadesc}{ERROR}
89-
An error aoocurred while trying to read the disc or its table of
89+
An error occurred while trying to read the disc or its table of
9090
contents.
9191
\end{datadesc}
9292

@@ -194,7 +194,7 @@ \subsection{Player Objects}
194194
\end{methoddesc}
195195

196196
\begin{methoddesc}[CD player]{playtrackabs}{track, minutes, seconds, frames, play}
197-
Like \method{play()}, except that playing begins at the spcified
197+
Like \method{play()}, except that playing begins at the specified
198198
absolute time and ends at the end of the specified track.
199199
\end{methoddesc}
200200

Doc/lib/libcfgparser.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ \section{\module{ConfigParser} ---
5656
\end{excdesc}
5757

5858
\begin{excdesc}{DuplicateSectionError}
59-
Exception raised when mutliple sections with the same name are found,
59+
Exception raised when multiple sections with the same name are found,
6060
or if \method{add_section()} is called with the name of a section that
6161
is already present.
6262
\end{excdesc}

Doc/lib/libcgi.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ \subsection{Using the cgi module}
104104
name, the object retrieved by \samp{form[\var{key}]} is not a
105105
\class{FieldStorage} or \class{MiniFieldStorage}
106106
instance but a list of such instances. If you expect this possibility
107-
(i.e., when your HTML form comtains multiple fields with the same
107+
(i.e., when your HTML form contains multiple fields with the same
108108
name), use the \function{type()} function to determine whether you
109109
have a single instance or a list of instances. For example, here's
110110
code that concatenates any number of username fields, separated by
@@ -131,7 +131,7 @@ \subsection{Using the cgi module}
131131
entire file in memory as a string. This may not be what you want.
132132
You can test for an uploaded file by testing either the filename
133133
attribute or the file attribute. You can then read the data at
134-
leasure from the file attribute:
134+
leisure from the file attribute:
135135

136136
\begin{verbatim}
137137
fileitem = form["userfile"]

Doc/lib/libcgihttp.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ \section{\module{CGIHTTPServer} ---
1111

1212
The \module{CGIHTTPServer} module defines a request-handler class,
1313
interface compatible with
14-
\class{BaseHTTPServer.BaseHTTPRequestHandler} and inherits behaviour
14+
\class{BaseHTTPServer.BaseHTTPRequestHandler} and inherits behavior
1515
from \class{SimpleHTTPServer.SimpleHTTPRequestHandler} but can also
1616
run CGI scripts.
1717

0 commit comments

Comments
 (0)