File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ \section{\module{Cookie} ---
1212string-only cookies, and provides an abstraction for having any serializable
1313data-type as cookie value.
1414
15- The module formerly strictly applied the parsing rules described in in
15+ The module formerly strictly applied the parsing rules described in
1616the \rfc {2109} and \rfc {2068} specifications. It has since been discovered
1717that MSIE 3.0x doesn't follow the character rules outlined in those
1818specs. As a result, the parsing rules used are a bit less strict.
Original file line number Diff line number Diff line change @@ -422,7 +422,7 @@ \section{Built-in Functions \label{built-in-funcs}}
422422 file's desired buffer size: 0 means unbuffered, 1 means line
423423 buffered, any other positive value means use a buffer of
424424 (approximately) that size. A negative \var {bufsize} means to use
425- the system default, which is usually line buffered for for tty
425+ the system default, which is usually line buffered for tty
426426 devices and fully buffered for other files. If omitted, the system
427427 default is used.\footnote {
428428 Specifying a buffer size currently has no effect on systems that
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ \section{\module{locale} ---
5858\end {funcdesc }
5959
6060\begin {funcdesc }{localeconv}{}
61- Returns the database of of the local conventions as a dictionary.
61+ Returns the database of the local conventions as a dictionary.
6262 This dictionary has the following strings as keys:
6363
6464 \begin {tableiii }{l|l|p{3in}}{constant}{Key}{Category}{Meaning}
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ \section{\module{mailbox} ---
7272Access a Babyl mailbox, which is similar to an MMDF mailbox. In
7373Babyl format, each message has two sets of headers, the
7474\emph {original } headers and the \emph {visible } headers. The original
75- headers appear before a a line containing only \code {'*** EOOH ***'}
75+ headers appear before a line containing only \code {'*** EOOH ***'}
7676(End-Of-Original-Headers) and the visible headers appear after the
7777\code {EOOH} line. Babyl-compliant mail readers will show you only the
7878visible headers, and \class {BabylMailbox} objects will return messages
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ \section{\module{multifile} ---
1717\begin {classdesc }{MultiFile}{fp\optional {, seekable}}
1818Create a multi-file. You must instantiate this class with an input
1919object argument for the \class {MultiFile} instance to get lines from,
20- such as as a file object returned by \function {open()}.
20+ such as a file object returned by \function {open()}.
2121
2222\class {MultiFile} only ever looks at the input object's
2323\method {readline()}, \method {seek()} and \method {tell()} methods, and
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ \chapter{The Python Debugger \label{debugger}}
7777\end {funcdesc }
7878
7979\begin {funcdesc }{runeval}{expression\optional {, globals\optional {, locals}}}
80- Evaluate the \var {expression} (given as a a string) under debugger
80+ Evaluate the \var {expression} (given as a string) under debugger
8181control. When \function {runeval()} returns, it returns the value of the
8282expression. Otherwise this function is similar to
8383\function {run()}.
Original file line number Diff line number Diff line change @@ -533,7 +533,7 @@ \section{Limitations \label{profile-limits}}
533533There is a fundamental problem with deterministic profilers involving
534534accuracy. The most obvious restriction is that the underlying `` clock''
535535is only ticking at a rate (typically) of about .001 seconds. Hence no
536- measurements will be more accurate that that underlying clock. If
536+ measurements will be more accurate than the underlying clock. If
537537enough measurements are taken, then the `` error'' will tend to average
538538out. Unfortunately, removing this first error induces a second source
539539of error...
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ \section{\module{rfc822} ---
4646data before discovering that the \cfunction {lseek()} system call
4747doesn't work. For maximum portability, you should set the seekable
4848argument to zero to prevent that initial \method {tell()} when passing
49- in an unseekable object such as a a file object created from a socket
49+ in an unseekable object such as a file object created from a socket
5050object.
5151
5252Input lines as read from the file may either be terminated by CR-LF or
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ \section{\module{UserDict} ---
2929\member {data} attribute of \class {UserDict} instances. If
3030\var {initialdata} is provided, \member {data} is initialized with its
3131contents; note that a reference to \var {initialdata} will not be kept,
32- allowing it be used used for other purposes.
32+ allowing it be used for other purposes.
3333\end {classdesc }
3434
3535In addition to supporting the methods and operations of mappings (see
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ \subsection{ZipInfo Objects \label{zipinfo-objects}}
210210\end {memberdesc }
211211
212212\begin {memberdesc }[ZipInfo]{date_time}
213- The time and date of the last modification to to the archive
213+ The time and date of the last modification to the archive
214214 member. This is a tuple of six values:
215215
216216\begin {tableii }{c|l}{code}{Index}{Value}
You can’t perform that action at this time.
0 commit comments