Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
d345225a
Kaydet (Commit)
d345225a
authored
Eyl 11, 2004
tarafından
Johannes Gijsbers
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1026384: fix two common typo's:
- accomodate -> accommodate - occured -> occurred Thanks George Yoshida!
üst
7a8c43ee
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
embedding.tex
Doc/ext/embedding.tex
+1
-1
libarray.tex
Doc/lib/libarray.tex
+3
-3
libsys.tex
Doc/lib/libsys.tex
+1
-1
libtarfile.tex
Doc/lib/libtarfile.tex
+1
-1
tkinter.tex
Doc/lib/tkinter.tex
+1
-1
manual.tex
Doc/templates/manual.tex
+1
-1
whatsnew24.tex
Doc/whatsnew/whatsnew24.tex
+1
-1
No files found.
Doc/ext/embedding.tex
Dosyayı görüntüle @
d345225a
...
...
@@ -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
Dosyayı görüntüle @
d345225a
...
...
@@ -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
Dosyayı görüntüle @
d345225a
...
...
@@ -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
Dosyayı görüntüle @
d345225a
...
...
@@ -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
Dosyayı görüntüle @
d345225a
...
...
@@ -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
Dosyayı görüntüle @
d345225a
...
...
@@ -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
Dosyayı görüntüle @
d345225a
...
...
@@ -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