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
94fedf9b
Kaydet (Commit)
94fedf9b
authored
Agu 17, 2005
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Expand the API notes.
üst
0c230b9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
concrete.tex
Doc/api/concrete.tex
+5
-4
No files found.
Doc/api/concrete.tex
Dosyayı görüntüle @
94fedf9b
...
@@ -2918,8 +2918,8 @@ or the abstract number protocol (including
...
@@ -2918,8 +2918,8 @@ or the abstract number protocol (including
\cfunction
{
PyNumber
_
Or()
}
,
\cfunction
{
PyNumber
_
Xor()
}
,
\cfunction
{
PyNumber
_
Or()
}
,
\cfunction
{
PyNumber
_
Xor()
}
,
\cfunction
{
PyNumber
_
InplaceAdd()
}
,
\cfunction
{
PyNumber
_
InplaceSubtract()
}
,
\cfunction
{
PyNumber
_
InplaceAdd()
}
,
\cfunction
{
PyNumber
_
InplaceSubtract()
}
,
\cfunction
{
PyNumber
_
InplaceOr()
}
, and
\cfunction
{
PyNumber
_
InplaceXor()
}
).
\cfunction
{
PyNumber
_
InplaceOr()
}
, and
\cfunction
{
PyNumber
_
InplaceXor()
}
).
Note,
the latter are also useful for copying (
\code
{
c=s+s
}
) and
clearing
Note,
\cfunction
{
PyNumber
_
InplaceSubtract()
}
is also useful
clearing
(
\code
{
s-=s
}
).
clearing a set
(
\code
{
s-=s
}
).
\begin{ctypedesc}
{
PySetObject
}
\begin{ctypedesc}
{
PySetObject
}
This subtype of
\ctype
{
PyObject
}
is used to hold the internal data for
This subtype of
\ctype
{
PyObject
}
is used to hold the internal data for
...
@@ -2929,7 +2929,7 @@ Note, the latter are also useful for copying (\code{c=s+s}) and clearing
...
@@ -2929,7 +2929,7 @@ Note, the latter are also useful for copying (\code{c=s+s}) and clearing
block of memory for medium and large sized sets (much like list storage).
block of memory for medium and large sized sets (much like list storage).
None of the fields of this structure should be considered public and
None of the fields of this structure should be considered public and
are subject to change. All access should be done through the
are subject to change. All access should be done through the
documented API
.
documented API
rather than by manipulating the values in the structure.
\end{ctypedesc}
\end{ctypedesc}
...
@@ -2967,7 +2967,8 @@ Likewise, the constructor functions work with any iterable Python object.
...
@@ -2967,7 +2967,8 @@ Likewise, the constructor functions work with any iterable Python object.
\var
{
iterable
}
. The
\var
{
iterable
}
may be
\NULL
{}
to create a
\var
{
iterable
}
. The
\var
{
iterable
}
may be
\NULL
{}
to create a
new empty set. Returns the new set on success or
\NULL
{}
on
new empty set. Returns the new set on success or
\NULL
{}
on
failure. Raises
\exception
{
TypeError
}
if
\var
{
iterable
}
is
failure. Raises
\exception
{
TypeError
}
if
\var
{
iterable
}
is
not actually iterable.
not actually iterable. The constructor is also useful for
copying a set (
\code
{
c=set(s)
}
).
\end{cfuncdesc}
\end{cfuncdesc}
\begin{cfuncdesc}
{
PyObject*
}{
PyFrozenSet
_
New
}{
PyObject *iterable
}
\begin{cfuncdesc}
{
PyObject*
}{
PyFrozenSet
_
New
}{
PyObject *iterable
}
...
...
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