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
8da4b592
Kaydet (Commit)
8da4b592
authored
Nis 24, 2002
tarafından
Thomas Heller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix a small mistake and complete some function prototypes.
SF Patch #547813.
üst
3b04d635
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
newtypes.tex
Doc/api/newtypes.tex
+4
-4
No files found.
Doc/api/newtypes.tex
Dosyayı görüntüle @
8da4b592
...
...
@@ -226,7 +226,7 @@ binding flag.
\begin{datadesc}
{
METH
_
VARARGS
}
This is the typical calling convention, where the methods have the
type
\ctype
{
Py
MethodDef
}
. The function expects two
type
\ctype
{
Py
CFunction
}
. The function expects two
\ctype
{
PyObject*
}
values. The first one is the
\var
{
self
}
object for
methods; for module functions, it has the value given to
\cfunction
{
Py
_
InitModule4()
}
(or
\NULL
{}
if
...
...
@@ -1151,7 +1151,7 @@ if dictoffset is not aligned on sizeof(void*):
The function signature is
\begin{verbatim}
tp
_
init(PyObject *self, PyObject *args, PyObject *kwds)
int
tp
_
init(PyObject *self, PyObject *args, PyObject *kwds)
\end{verbatim}
The self argument is the instance to be initialized; the
\var
{
args
}
...
...
@@ -1179,7 +1179,7 @@ tp_init(PyObject *self, PyObject *args, PyObject *kwds)
The function signature is
\begin{verbatim}
tp
_
alloc(PyTypeObject *self, int nitems)
PyObject *
tp
_
alloc(PyTypeObject *self, int nitems)
\end{verbatim}
The purpose of this function is to separate memory allocation from
...
...
@@ -1215,7 +1215,7 @@ tp_alloc(PyTypeObject *self, int nitems)
The function signature is
\begin{verbatim}
tp
_
new(PyTypeObject *subtype, PyObject *args, PyObject *kwds)
PyObject *
tp
_
new(PyTypeObject *subtype, PyObject *args, PyObject *kwds)
\end{verbatim}
The subtype argument is the type of the object being created; the
...
...
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