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
b957bc3d
Kaydet (Commit)
b957bc3d
authored
Nis 23, 2002
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clarify the return value of PyObject_IsInstance().
üst
106c1a0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
abstract.tex
Doc/api/abstract.tex
+9
-8
No files found.
Doc/api/abstract.tex
Dosyayı görüntüle @
b957bc3d
...
...
@@ -129,14 +129,15 @@ for which they do not apply, they will raise a Python exception.
\end{cfuncdesc}
\begin{cfuncdesc}
{
int
}{
PyObject
_
IsInstance
}{
PyObject *inst, PyObject *cls
}
Return
\code
{
1
}
if
\var
{
inst
}
is an instance of the class
\var
{
cls
}
or a subclass of
\var
{
cls
}
. If
\var
{
cls
}
is a type object rather
than a class object,
\cfunction
{
PyObject
_
IsInstance()
}
returns
\code
{
1
}
if
\var
{
inst
}
is of type
\var
{
cls
}
. If
\var
{
inst
}
is not a
class instance and
\var
{
cls
}
is neither a type object or class
object,
\var
{
inst
}
must have a
\member
{__
class
__}
attribute --- the
class relationship of the value of that attribute with
\var
{
cls
}
will be used to determine the result of this function.
Returns
\code
{
1
}
if
\var
{
inst
}
is an instance of the class
\var
{
cls
}
or a subclass of
\var
{
cls
}
, or
\code
{
0
}
if not. On error, returns
\code
{
-1
}
and sets an exception. If
\var
{
cls
}
is a type object
rather than a class object,
\cfunction
{
PyObject
_
IsInstance()
}
returns
\code
{
1
}
if
\var
{
inst
}
is of type
\var
{
cls
}
. If
\var
{
inst
}
is not a class instance and
\var
{
cls
}
is neither a type object or
class object,
\var
{
inst
}
must have a
\member
{__
class
__}
attribute
--- the class relationship of the value of that attribute with
\var
{
cls
}
will be used to determine the result of this function.
\versionadded
{
2.1
}
\end{cfuncdesc}
...
...
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