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
2677512f
Kaydet (Commit)
2677512f
authored
Eki 21, 2001
tarafından
Neil Schemenauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Adding missing "static" declarations (found by "make smelly").
üst
c3ffef66
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
newmodule.c
Modules/newmodule.c
+1
-1
xxsubtype.c
Modules/xxsubtype.c
+1
-1
descrobject.c
Objects/descrobject.c
+3
-3
No files found.
Modules/newmodule.c
Dosyayı görüntüle @
2677512f
...
...
@@ -215,7 +215,7 @@ static PyMethodDef new_methods[] = {
{
NULL
,
NULL
}
/* sentinel */
};
char
new_doc
[]
=
static
char
new_doc
[]
=
"Functions to create new objects used by the interpreter.
\n
\
\n
\
You need to know a great deal about the interpreter to use this!"
;
...
...
Modules/xxsubtype.c
Dosyayı görüntüle @
2677512f
...
...
@@ -197,7 +197,7 @@ static PyTypeObject spamdict_type = {
0
,
/* tp_new */
};
PyObject
*
static
PyObject
*
spam_bench
(
PyObject
*
self
,
PyObject
*
args
)
{
PyObject
*
obj
,
*
name
,
*
res
;
...
...
Objects/descrobject.c
Dosyayı görüntüle @
2677512f
...
...
@@ -673,7 +673,7 @@ proxy_getiter(proxyobject *pp)
return
PyObject_GetIter
(
pp
->
dict
);
}
PyObject
*
static
PyObject
*
proxy_str
(
proxyobject
*
pp
)
{
return
PyObject_Str
(
pp
->
dict
);
...
...
@@ -693,7 +693,7 @@ proxy_traverse(PyObject *self, visitproc visit, void *arg)
return
0
;
}
PyTypeObject
proxytype
=
{
static
PyTypeObject
proxytype
=
{
PyObject_HEAD_INIT
(
&
PyType_Type
)
0
,
/* ob_size */
"dict-proxy"
,
/* tp_name */
...
...
@@ -827,7 +827,7 @@ wrapper_traverse(PyObject *self, visitproc visit, void *arg)
return
0
;
}
PyTypeObject
wrappertype
=
{
static
PyTypeObject
wrappertype
=
{
PyObject_HEAD_INIT
(
&
PyType_Type
)
0
,
/* ob_size */
"method-wrapper"
,
/* tp_name */
...
...
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