Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7e43110f
Commit
7e43110f
authored
Sep 22, 2003
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SF 810242. Fix doubled word errors.
parent
e46d14cd
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
Doc/lib/libcodecs.tex
Doc/lib/libcodecs.tex
+1
-1
Doc/lib/libfuncs.tex
Doc/lib/libfuncs.tex
+1
-1
Doc/lib/libgopherlib.tex
Doc/lib/libgopherlib.tex
+1
-1
Doc/lib/libimgfile.tex
Doc/lib/libimgfile.tex
+1
-1
Doc/lib/libitertools.tex
Doc/lib/libitertools.tex
+1
-1
Doc/lib/libmultifile.tex
Doc/lib/libmultifile.tex
+1
-1
Doc/lib/libregex.tex
Doc/lib/libregex.tex
+1
-1
No files found.
Doc/lib/libcodecs.tex
View file @
7e43110f
...
...
@@ -161,7 +161,7 @@ codecs. Output is also codec-dependent and will usually be Unicode as
well.
}
\var
{
encoding
}
specifies the encoding which is to be used for the
the
file.
file.
\var
{
errors
}
may be given to define the error handling. It defaults
to
\code
{
'strict'
}
which causes a
\exception
{
ValueError
}
to be raised
...
...
Doc/lib/libfuncs.tex
View file @
7e43110f
...
...
@@ -975,7 +975,7 @@ class C(B):
container that supports iteration, or an iterator object.
If
\var
{
sequence
}
is already a tuple, it
is returned unchanged. For instance,
\code
{
tuple('abc')
}
returns
returns
\code
{
('a', 'b', 'c')
}
and
\code
{
tuple([1, 2, 3])
}
returns
\code
{
('a', 'b', 'c')
}
and
\code
{
tuple([1, 2, 3])
}
returns
\code
{
(1, 2, 3)
}
. If no argument is given, returns a new empty
tuple,
\code
{
()
}
.
\end{funcdesc}
...
...
Doc/lib/libgopherlib.tex
View file @
7e43110f
...
...
@@ -7,7 +7,7 @@
\indexii
{
Gopher
}{
protocol
}
This module provides a minimal implementation of client side of the
the
Gopher protocol. It is used by the module
\refmodule
{
urllib
}
to
Gopher protocol. It is used by the module
\refmodule
{
urllib
}
to
handle URLs that use the Gopher protocol.
The module defines the following functions:
...
...
Doc/lib/libimgfile.tex
View file @
7e43110f
...
...
@@ -9,7 +9,7 @@
The
\module
{
imgfile
}
module allows Python programs to access SGI imglib image
files (also known as
\file
{
.rgb
}
files). The module is far from
complete, but is provided anyway since the functionality that there is
is
enough in some cases. Currently, colormap files are not supported.
enough in some cases. Currently, colormap files are not supported.
The module defines the following variables and functions:
...
...
Doc/lib/libitertools.tex
View file @
7e43110f
...
...
@@ -41,7 +41,7 @@ computer equivalent of ``inventory''.
The performance advantage of iterators becomes more acute as the number
of elements increases -- at some point, lists grow large enough to
to
severely impact memory cache performance and start running slowly.
severely impact memory cache performance and start running slowly.
\begin{seealso}
\seetext
{
The Standard ML Basis Library,
...
...
Doc/lib/libmultifile.tex
View file @
7e43110f
...
...
@@ -121,7 +121,7 @@ ignores trailing whitespace.
Turn a boundary string into an end-marker line. By default, this
method prepends
\code
{
'-
}
\code
{
-'
}
and appends
\code
{
'-
}
\code
{
-'
}
(like a
MIME-multipart end-of-message marker) but it is declared so it can be
be
overridden in derived classes. This method need not append LF or
overridden in derived classes. This method need not append LF or
CR-LF, as comparison with the result ignores trailing whitespace.
\end{methoddesc}
...
...
Doc/lib/libregex.tex
View file @
7e43110f
...
...
@@ -315,7 +315,7 @@ the result is a single string; if there are multiple arguments, the
result is a tuple with one item per argument. If the
\var
{
index
}
is
zero, the corresponding return value is the entire matching string; if
it is in the inclusive range [1..99], it is the string matching the
the
corresponding parenthesized group (using the default syntax,
corresponding parenthesized group (using the default syntax,
groups are parenthesized using
\code
{{
\e
}
(
}
and
\code
{{
\e
}
)
}
). If no
such group exists, the corresponding result is
\code
{
None
}
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment