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
0e2f7983
Kaydet (Commit)
0e2f7983
authored
May 22, 2002
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replaced lots of PyMem_DEL() calls with PyObject_DEL().
üst
422cdde6
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
16 deletions
+16
-16
Nav.c
Mac/Modules/Nav.c
+1
-1
calldll.c
Mac/Modules/calldll.c
+3
-3
ctbmodule.c
Mac/Modules/ctbmodule.c
+1
-1
HtmlRendermodule.c
Mac/Modules/htmlrender/HtmlRendermodule.c
+1
-1
icgluemodule.c
Mac/Modules/icgluemodule.c
+2
-2
macfsmodule.c
Mac/Modules/macfsmodule.c
+4
-4
macosmodule.c
Mac/Modules/macosmodule.c
+1
-1
macspeechmodule.c
Mac/Modules/macspeechmodule.c
+2
-2
_Scrapmodule.c
Mac/Modules/scrap/_Scrapmodule.c
+1
-1
No files found.
Mac/Modules/Nav.c
Dosyayı görüntüle @
0e2f7983
...
@@ -309,7 +309,7 @@ static void
...
@@ -309,7 +309,7 @@ static void
navrr_dealloc
(
navrrobject
*
self
)
navrr_dealloc
(
navrrobject
*
self
)
{
{
NavDisposeReply
(
&
self
->
itself
);
NavDisposeReply
(
&
self
->
itself
);
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
static
PyObject
*
...
...
Mac/Modules/calldll.c
Dosyayı görüntüle @
0e2f7983
...
@@ -543,7 +543,7 @@ static void
...
@@ -543,7 +543,7 @@ static void
cdr_dealloc
(
self
)
cdr_dealloc
(
self
)
cdrobject
*
self
;
cdrobject
*
self
;
{
{
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
static
PyObject
*
...
@@ -631,7 +631,7 @@ cdc_dealloc(self)
...
@@ -631,7 +631,7 @@ cdc_dealloc(self)
cdcobject
*
self
;
cdcobject
*
self
;
{
{
Py_XDECREF
(
self
->
routine
);
Py_XDECREF
(
self
->
routine
);
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
...
@@ -855,7 +855,7 @@ static void
...
@@ -855,7 +855,7 @@ static void
cdf_dealloc
(
self
)
cdf_dealloc
(
self
)
cdfobject
*
self
;
cdfobject
*
self
;
{
{
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
static
PyObject
*
...
...
Mac/Modules/ctbmodule.c
Dosyayı görüntüle @
0e2f7983
...
@@ -186,7 +186,7 @@ ctbcm_dealloc(self)
...
@@ -186,7 +186,7 @@ ctbcm_dealloc(self)
CMDispose
(
self
->
hdl
);
CMDispose
(
self
->
hdl
);
self
->
hdl
=
NULL
;
self
->
hdl
=
NULL
;
}
}
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
static
PyObject
*
...
...
Mac/Modules/htmlrender/HtmlRendermodule.c
Dosyayı görüntüle @
0e2f7983
...
@@ -83,7 +83,7 @@ static void HtmlObj_dealloc(self)
...
@@ -83,7 +83,7 @@ static void HtmlObj_dealloc(self)
HtmlObjectObject
*
self
;
HtmlObjectObject
*
self
;
{
{
/* Cleanup of self->ob_itself goes here */
/* Cleanup of self->ob_itself goes here */
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
HtmlObj_HRDisposeReference
(
_self
,
_args
)
static
PyObject
*
HtmlObj_HRDisposeReference
(
_self
,
_args
)
...
...
Mac/Modules/icgluemodule.c
Dosyayı görüntüle @
0e2f7983
...
@@ -460,7 +460,7 @@ newiciobject(OSType creator)
...
@@ -460,7 +460,7 @@ newiciobject(OSType creator)
return
NULL
;
return
NULL
;
if
((
err
=
ICStart
(
&
self
->
inst
,
creator
))
!=
0
)
{
if
((
err
=
ICStart
(
&
self
->
inst
,
creator
))
!=
0
)
{
(
void
)
PyMac_Error
(
err
);
(
void
)
PyMac_Error
(
err
);
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
return
NULL
;
return
NULL
;
}
}
return
self
;
return
self
;
...
@@ -471,7 +471,7 @@ static void
...
@@ -471,7 +471,7 @@ static void
ici_dealloc
(
iciobject
*
self
)
ici_dealloc
(
iciobject
*
self
)
{
{
(
void
)
ICStop
(
self
->
inst
);
(
void
)
ICStop
(
self
->
inst
);
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
static
PyObject
*
...
...
Mac/Modules/macfsmodule.c
Dosyayı görüntüle @
0e2f7983
...
@@ -227,7 +227,7 @@ mfsa_dealloc(mfsaobject *self)
...
@@ -227,7 +227,7 @@ mfsa_dealloc(mfsaobject *self)
}
}
#endif
#endif
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
statichere
PyTypeObject
Mfsatype
=
{
statichere
PyTypeObject
Mfsatype
=
{
...
@@ -276,7 +276,7 @@ newmfsiobject(void)
...
@@ -276,7 +276,7 @@ newmfsiobject(void)
static
void
static
void
mfsi_dealloc
(
mfsiobject
*
self
)
mfsi_dealloc
(
mfsiobject
*
self
)
{
{
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
static
PyObject
*
...
@@ -700,7 +700,7 @@ newmfssobject(FSSpec *fss)
...
@@ -700,7 +700,7 @@ newmfssobject(FSSpec *fss)
static
void
static
void
mfss_dealloc
(
mfssobject
*
self
)
mfss_dealloc
(
mfssobject
*
self
)
{
{
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
static
PyObject
*
...
@@ -846,7 +846,7 @@ mfsr_compare(mfsrobject *v, mfsrobject *w)
...
@@ -846,7 +846,7 @@ mfsr_compare(mfsrobject *v, mfsrobject *w)
static
void
static
void
mfsr_dealloc
(
mfsrobject
*
self
)
mfsr_dealloc
(
mfsrobject
*
self
)
{
{
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
statichere
PyTypeObject
Mfsrtype
=
{
statichere
PyTypeObject
Mfsrtype
=
{
...
...
Mac/Modules/macosmodule.c
Dosyayı görüntüle @
0e2f7983
...
@@ -259,7 +259,7 @@ static void
...
@@ -259,7 +259,7 @@ static void
rf_dealloc
(
rfobject
*
self
)
rf_dealloc
(
rfobject
*
self
)
{
{
do_close
(
self
);
do_close
(
self
);
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
static
PyObject
*
...
...
Mac/Modules/macspeechmodule.c
Dosyayı görüntüle @
0e2f7983
...
@@ -117,7 +117,7 @@ sc_dealloc(self)
...
@@ -117,7 +117,7 @@ sc_dealloc(self)
scobject
*
self
;
scobject
*
self
;
{
{
DisposeSpeechChannel
(
self
->
chan
);
DisposeSpeechChannel
(
self
->
chan
);
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
static
PyObject
*
...
@@ -324,7 +324,7 @@ static void
...
@@ -324,7 +324,7 @@ static void
mv_dealloc
(
self
)
mv_dealloc
(
self
)
mvobject
*
self
;
mvobject
*
self
;
{
{
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
static
PyObject
*
...
...
Mac/Modules/scrap/_Scrapmodule.c
Dosyayı görüntüle @
0e2f7983
...
@@ -78,7 +78,7 @@ int ScrapObj_Convert(PyObject *v, ScrapRef *p_itself)
...
@@ -78,7 +78,7 @@ int ScrapObj_Convert(PyObject *v, ScrapRef *p_itself)
static
void
ScrapObj_dealloc
(
ScrapObject
*
self
)
static
void
ScrapObj_dealloc
(
ScrapObject
*
self
)
{
{
/* Cleanup of self->ob_itself goes here */
/* Cleanup of self->ob_itself goes here */
Py
Mem
_DEL
(
self
);
Py
Object
_DEL
(
self
);
}
}
static
PyObject
*
ScrapObj_GetScrapFlavorFlags
(
ScrapObject
*
_self
,
PyObject
*
_args
)
static
PyObject
*
ScrapObj_GetScrapFlavorFlags
(
ScrapObject
*
_self
,
PyObject
*
_args
)
...
...
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