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
9181737a
Commit
9181737a
authored
Sep 11, 2004
by
Johannes Gijsbers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch #1026384: fix two common typo's:
- accomodate -> accommodate - occured -> occurred Thanks George Yoshida!
parent
b4759ef9
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
Doc/ext/embedding.tex
Doc/ext/embedding.tex
+1
-1
Doc/lib/libarray.tex
Doc/lib/libarray.tex
+3
-3
Doc/lib/libsys.tex
Doc/lib/libsys.tex
+1
-1
Doc/lib/libtarfile.tex
Doc/lib/libtarfile.tex
+1
-1
Doc/lib/tkinter.tex
Doc/lib/tkinter.tex
+1
-1
Doc/templates/manual.tex
Doc/templates/manual.tex
+1
-1
Doc/whatsnew/whatsnew24.tex
Doc/whatsnew/whatsnew24.tex
+1
-1
No files found.
Doc/ext/embedding.tex
View file @
9181737a
...
...
@@ -113,7 +113,7 @@ When embedding Python, the interface code does:
\end{enumerate}
As you can see, the data conversion steps are simply swapped to
accomodate the different direction of the cross-language transfer.
accom
m
odate the different direction of the cross-language transfer.
The only difference is the routine that you call between both
data conversions. When extending, you call a C routine, when
embedding, you call a Python routine.
...
...
Doc/lib/libarray.tex
View file @
9181737a
...
...
@@ -105,7 +105,7 @@ data from a file written on a machine with a different byte order.
\end{methoddesc}
\begin{methoddesc}
[array]
{
count
}{
x
}
Return the number of occurences of
\var
{
x
}
in the array.
Return the number of occur
r
ences of
\var
{
x
}
in the array.
\end{methoddesc}
\begin{methoddesc}
[array]
{
extend
}{
iterable
}
...
...
@@ -147,7 +147,7 @@ append Unicode data to an array of some other type.
\begin{methoddesc}
[array]
{
index
}{
x
}
Return the smallest
\var
{
i
}
such that
\var
{
i
}
is the index of
the first occurence of
\var
{
x
}
in the array.
the first occur
r
ence of
\var
{
x
}
in the array.
\end{methoddesc}
\begin{methoddesc}
[array]
{
insert
}{
i, x
}
...
...
@@ -174,7 +174,7 @@ do.
\end{methoddesc}
\begin{methoddesc}
[array]
{
remove
}{
x
}
Remove the first occurence of
\var
{
x
}
from the array.
Remove the first occur
r
ence of
\var
{
x
}
from the array.
\end{methoddesc}
\begin{methoddesc}
[array]
{
reverse
}{}
...
...
Doc/lib/libsys.tex
View file @
9181737a
...
...
@@ -122,7 +122,7 @@ It is always available.
\begin{funcdesc}
{
exc
_
clear
}{}
This function clears all information relating to the current or last
exception that occured in the current thread. After calling this
exception that occur
r
ed in the current thread. After calling this
function,
\function
{
exc
_
info()
}
will return three
\code
{
None
}
values until
another exception is raised in the current thread or the execution stack
returns to a frame where another exception is being handled.
...
...
Doc/lib/libtarfile.tex
View file @
9181737a
...
...
@@ -170,7 +170,7 @@ tar archive several times. Each archive member is represented by a
not be found in the archive,
\exception
{
KeyError
}
is raised.
\begin{notice}
If a member occurs more than once in the archive, its last
occurence is assumed to be the most up-to-date version.
occur
r
ence is assumed to be the most up-to-date version.
\end{notice}
\end{methoddesc}
...
...
Doc/lib/tkinter.tex
View file @
9181737a
...
...
@@ -535,7 +535,7 @@ the "slave widgets" inside. The packer is used to control where slave
widgets appear inside the master into which they are packed. You can
pack widgets into frames, and frames into other frames, in order to
achieve the kind of layout you desire. Additionally, the arrangement
is dynamically adjusted to accomodate incremental changes to the
is dynamically adjusted to accom
m
odate incremental changes to the
configuration, once it is packed.
Note that widgets do not appear until they have had their geometry
...
...
Doc/templates/manual.tex
View file @
9181737a
...
...
@@ -47,7 +47,7 @@
\noindent
Big Python is a special version of Python for users who require larger
keys on their keyboards. It accomodates their special needs by ...
keys on their keyboards. It accom
m
odates their special needs by ...
\end{abstract}
...
...
Doc/whatsnew/whatsnew24.tex
View file @
9181737a
...
...
@@ -1098,7 +1098,7 @@ r ['r', 'r']
>>> # List unique letters
>>>
[
k for k, g in groupby
(
letters
)]
[
'a', 'b', 'c', 'd', 'r'
]
>>> # Count letter occurences
>>> # Count letter occur
r
ences
>>>
[(
k, len
(
list
(
g
)))
for k, g in groupby
(
letters
)]
[(
'a',
5
)
,
(
'b',
2
)
,
(
'c',
1
)
,
(
'd',
1
)
,
(
'r',
2
)]
\end
{
verbatim
}
...
...
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