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
aa769ae4
Kaydet (Commit)
aa769ae4
authored
Nis 12, 2002
tarafından
Neil Schemenauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
PyObject_Del can now be used as a function designator.
üst
6189b89c
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
arraymodule.c
Modules/arraymodule.c
+1
-1
socketmodule.c
Modules/socketmodule.c
+1
-1
complexobject.c
Objects/complexobject.c
+1
-1
fileobject.c
Objects/fileobject.c
+1
-1
funcobject.c
Objects/funcobject.c
+2
-2
longobject.c
Objects/longobject.c
+1
-1
No files found.
Modules/arraymodule.c
Dosyayı görüntüle @
aa769ae4
...
...
@@ -1719,7 +1719,7 @@ statichere PyTypeObject Arraytype = {
0
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
array_new
,
/* tp_new */
_PyObject_Del
,
/* tp_free */
PyObject_Del
,
/* tp_free */
};
/* No functions in array module. */
...
...
Modules/socketmodule.c
Dosyayı görüntüle @
aa769ae4
...
...
@@ -2703,7 +2703,7 @@ init_socket(void)
PySocketSock_Type
.
ob_type
=
&
PyType_Type
;
PySocketSock_Type
.
tp_getattro
=
PyObject_GenericGetAttr
;
PySocketSock_Type
.
tp_alloc
=
PyType_GenericAlloc
;
PySocketSock_Type
.
tp_free
=
_
PyObject_Del
;
PySocketSock_Type
.
tp_free
=
PyObject_Del
;
m
=
Py_InitModule3
(
PySocket_MODULE_NAME
,
PySocket_methods
,
module_doc
);
...
...
Objects/complexobject.c
Dosyayı görüntüle @
aa769ae4
...
...
@@ -992,7 +992,7 @@ PyTypeObject PyComplex_Type = {
0
,
/* tp_init */
0
,
/* tp_alloc */
complex_new
,
/* tp_new */
_PyObject_Del
,
/* tp_free */
PyObject_Del
,
/* tp_free */
};
#endif
Objects/fileobject.c
Dosyayı görüntüle @
aa769ae4
...
...
@@ -1631,7 +1631,7 @@ PyTypeObject PyFile_Type = {
(
initproc
)
file_init
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
file_new
,
/* tp_new */
_PyObject_Del
,
/* tp_free */
PyObject_Del
,
/* tp_free */
};
/* Interface for the 'soft space' between print items. */
...
...
Objects/funcobject.c
Dosyayı görüntüle @
aa769ae4
...
...
@@ -554,7 +554,7 @@ PyTypeObject PyClassMethod_Type = {
cm_init
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
PyType_GenericNew
,
/* tp_new */
_PyObject_Del
,
/* tp_free */
PyObject_Del
,
/* tp_free */
};
PyObject
*
...
...
@@ -683,7 +683,7 @@ PyTypeObject PyStaticMethod_Type = {
sm_init
,
/* tp_init */
PyType_GenericAlloc
,
/* tp_alloc */
PyType_GenericNew
,
/* tp_new */
_PyObject_Del
,
/* tp_free */
PyObject_Del
,
/* tp_free */
};
PyObject
*
...
...
Objects/longobject.c
Dosyayı görüntüle @
aa769ae4
...
...
@@ -2352,5 +2352,5 @@ PyTypeObject PyLong_Type = {
0
,
/* tp_init */
0
,
/* tp_alloc */
long_new
,
/* tp_new */
_PyObject_Del
,
/* tp_free */
PyObject_Del
,
/* tp_free */
};
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