Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 033b79c

Browse files
committed
Regenerated.
1 parent f16951c commit 033b79c

20 files changed

Lines changed: 47 additions & 47 deletions

Mac/Modules/ae/_AEmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ int AEDesc_Convert(PyObject *v, AEDesc *p_itself)
8989
static void AEDesc_dealloc(AEDescObject *self)
9090
{
9191
AEDisposeDesc(&self->ob_itself);
92-
PyMem_DEL(self);
92+
PyObject_Del(self);
9393
}
9494

9595
static PyObject *AEDesc_AECoerceDesc(AEDescObject *_self, PyObject *_args)

Mac/Modules/app/_Appmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ int ThemeDrawingStateObj_Convert(PyObject *v, ThemeDrawingState *p_itself)
6969
static void ThemeDrawingStateObj_dealloc(ThemeDrawingStateObject *self)
7070
{
7171
/* Cleanup of self->ob_itself goes here */
72-
PyMem_DEL(self);
72+
PyObject_Del(self);
7373
}
7474

7575
static PyObject *ThemeDrawingStateObj_SetThemeDrawingState(ThemeDrawingStateObject *_self, PyObject *_args)

Mac/Modules/carbonevt/_CarbonEvtmodule.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ int EventRef_Convert(PyObject *v, EventRef *p_itself)
171171
static void EventRef_dealloc(EventRefObject *self)
172172
{
173173
/* Cleanup of self->ob_itself goes here */
174-
PyMem_DEL(self);
174+
PyObject_Del(self);
175175
}
176176

177177
static PyObject *EventRef_RetainEvent(EventRefObject *_self, PyObject *_args)
@@ -478,7 +478,7 @@ int EventQueueRef_Convert(PyObject *v, EventQueueRef *p_itself)
478478
static void EventQueueRef_dealloc(EventQueueRefObject *self)
479479
{
480480
/* Cleanup of self->ob_itself goes here */
481-
PyMem_DEL(self);
481+
PyObject_Del(self);
482482
}
483483

484484
static PyObject *EventQueueRef_PostEventToQueue(EventQueueRefObject *_self, PyObject *_args)
@@ -661,7 +661,7 @@ int EventLoopRef_Convert(PyObject *v, EventLoopRef *p_itself)
661661
static void EventLoopRef_dealloc(EventLoopRefObject *self)
662662
{
663663
/* Cleanup of self->ob_itself goes here */
664-
PyMem_DEL(self);
664+
PyObject_Del(self);
665665
}
666666

667667
static PyObject *EventLoopRef_QuitEventLoop(EventLoopRefObject *_self, PyObject *_args)
@@ -753,7 +753,7 @@ int EventLoopTimerRef_Convert(PyObject *v, EventLoopTimerRef *p_itself)
753753
static void EventLoopTimerRef_dealloc(EventLoopTimerRefObject *self)
754754
{
755755
/* Cleanup of self->ob_itself goes here */
756-
PyMem_DEL(self);
756+
PyObject_Del(self);
757757
}
758758

759759
static PyObject *EventLoopTimerRef_RemoveEventLoopTimer(EventLoopTimerRefObject *_self, PyObject *_args)
@@ -868,7 +868,7 @@ static void EventHandlerRef_dealloc(EventHandlerRefObject *self)
868868
RemoveEventHandler(self->ob_itself);
869869
Py_DECREF(self->ob_callback);
870870
}
871-
PyMem_DEL(self);
871+
PyObject_Del(self);
872872
}
873873

874874
static PyObject *EventHandlerRef_AddEventTypesToHandler(EventHandlerRefObject *_self, PyObject *_args)
@@ -1018,7 +1018,7 @@ int EventHandlerCallRef_Convert(PyObject *v, EventHandlerCallRef *p_itself)
10181018
static void EventHandlerCallRef_dealloc(EventHandlerCallRefObject *self)
10191019
{
10201020
/* Cleanup of self->ob_itself goes here */
1021-
PyMem_DEL(self);
1021+
PyObject_Del(self);
10221022
}
10231023

10241024
static PyObject *EventHandlerCallRef_CallNextEventHandler(EventHandlerCallRefObject *_self, PyObject *_args)
@@ -1113,7 +1113,7 @@ int EventTargetRef_Convert(PyObject *v, EventTargetRef *p_itself)
11131113
static void EventTargetRef_dealloc(EventTargetRefObject *self)
11141114
{
11151115
/* Cleanup of self->ob_itself goes here */
1116-
PyMem_DEL(self);
1116+
PyObject_Del(self);
11171117
}
11181118

11191119
static PyObject *EventTargetRef_InstallStandardEventHandler(EventTargetRefObject *_self, PyObject *_args)
@@ -1230,7 +1230,7 @@ int EventHotKeyRef_Convert(PyObject *v, EventHotKeyRef *p_itself)
12301230
static void EventHotKeyRef_dealloc(EventHotKeyRefObject *self)
12311231
{
12321232
/* Cleanup of self->ob_itself goes here */
1233-
PyMem_DEL(self);
1233+
PyObject_Del(self);
12341234
}
12351235

12361236
static PyObject *EventHotKeyRef_UnregisterEventHotKey(EventHotKeyRefObject *_self, PyObject *_args)

Mac/Modules/cf/_CFmodule.c

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ static void CFTypeRefObj_dealloc(CFTypeRefObject *self)
163163
{
164164
self->ob_freeit((CFTypeRef)self->ob_itself);
165165
}
166-
PyMem_DEL(self);
166+
PyObject_Del(self);
167167
}
168168

169169
static PyObject *CFTypeRefObj_CFGetTypeID(CFTypeRefObject *_self, PyObject *_args)
@@ -402,7 +402,7 @@ static void CFArrayRefObj_dealloc(CFArrayRefObject *self)
402402
{
403403
self->ob_freeit((CFTypeRef)self->ob_itself);
404404
}
405-
PyMem_DEL(self);
405+
PyObject_Del(self);
406406
}
407407

408408
static PyObject *CFArrayRefObj_CFArrayCreateCopy(CFArrayRefObject *_self, PyObject *_args)
@@ -554,7 +554,7 @@ static void CFMutableArrayRefObj_dealloc(CFMutableArrayRefObject *self)
554554
{
555555
self->ob_freeit((CFTypeRef)self->ob_itself);
556556
}
557-
PyMem_DEL(self);
557+
PyObject_Del(self);
558558
}
559559

560560
static PyObject *CFMutableArrayRefObj_CFArrayRemoveValueAtIndex(CFMutableArrayRefObject *_self, PyObject *_args)
@@ -735,7 +735,7 @@ static void CFDictionaryRefObj_dealloc(CFDictionaryRefObject *self)
735735
{
736736
self->ob_freeit((CFTypeRef)self->ob_itself);
737737
}
738-
PyMem_DEL(self);
738+
PyObject_Del(self);
739739
}
740740

741741
static PyObject *CFDictionaryRefObj_CFDictionaryCreateCopy(CFDictionaryRefObject *_self, PyObject *_args)
@@ -869,7 +869,7 @@ static void CFMutableDictionaryRefObj_dealloc(CFMutableDictionaryRefObject *self
869869
{
870870
self->ob_freeit((CFTypeRef)self->ob_itself);
871871
}
872-
PyMem_DEL(self);
872+
PyObject_Del(self);
873873
}
874874

875875
static PyObject *CFMutableDictionaryRefObj_CFDictionaryRemoveAllValues(CFMutableDictionaryRefObject *_self, PyObject *_args)
@@ -987,7 +987,7 @@ static void CFDataRefObj_dealloc(CFDataRefObject *self)
987987
{
988988
self->ob_freeit((CFTypeRef)self->ob_itself);
989989
}
990-
PyMem_DEL(self);
990+
PyObject_Del(self);
991991
}
992992

993993
static PyObject *CFDataRefObj_CFDataCreateCopy(CFDataRefObject *_self, PyObject *_args)
@@ -1139,7 +1139,7 @@ static void CFMutableDataRefObj_dealloc(CFMutableDataRefObject *self)
11391139
{
11401140
self->ob_freeit((CFTypeRef)self->ob_itself);
11411141
}
1142-
PyMem_DEL(self);
1142+
PyObject_Del(self);
11431143
}
11441144

11451145
static PyObject *CFMutableDataRefObj_CFDataSetLength(CFMutableDataRefObject *_self, PyObject *_args)
@@ -1358,7 +1358,7 @@ static void CFStringRefObj_dealloc(CFStringRefObject *self)
13581358
{
13591359
self->ob_freeit((CFTypeRef)self->ob_itself);
13601360
}
1361-
PyMem_DEL(self);
1361+
PyObject_Del(self);
13621362
}
13631363

13641364
static PyObject *CFStringRefObj_CFStringCreateWithSubstring(CFStringRefObject *_self, PyObject *_args)
@@ -2026,7 +2026,7 @@ static void CFMutableStringRefObj_dealloc(CFMutableStringRefObject *self)
20262026
{
20272027
self->ob_freeit((CFTypeRef)self->ob_itself);
20282028
}
2029-
PyMem_DEL(self);
2029+
PyObject_Del(self);
20302030
}
20312031

20322032
static PyObject *CFMutableStringRefObj_CFStringAppend(CFMutableStringRefObject *_self, PyObject *_args)
@@ -2355,7 +2355,7 @@ static void CFURLRefObj_dealloc(CFURLRefObject *self)
23552355
{
23562356
self->ob_freeit((CFTypeRef)self->ob_itself);
23572357
}
2358-
PyMem_DEL(self);
2358+
PyObject_Del(self);
23592359
}
23602360

23612361
static PyObject *CFURLRefObj_CFURLCreateData(CFURLRefObject *_self, PyObject *_args)

Mac/Modules/cg/_CGmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ int CGContextRefObj_Convert(PyObject *v, CGContextRef *p_itself)
241241
static void CGContextRefObj_dealloc(CGContextRefObject *self)
242242
{
243243
CGContextRelease(self->ob_itself);
244-
PyMem_DEL(self);
244+
PyObject_Del(self);
245245
}
246246

247247
static PyObject *CGContextRefObj_CGContextSaveGState(CGContextRefObject *_self, PyObject *_args)

Mac/Modules/cm/_Cmmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ int CmpInstObj_Convert(PyObject *v, ComponentInstance *p_itself)
102102
static void CmpInstObj_dealloc(ComponentInstanceObject *self)
103103
{
104104
/* Cleanup of self->ob_itself goes here */
105-
PyMem_DEL(self);
105+
PyObject_Del(self);
106106
}
107107

108108
static PyObject *CmpInstObj_CloseComponent(ComponentInstanceObject *_self, PyObject *_args)
@@ -384,7 +384,7 @@ int CmpObj_Convert(PyObject *v, Component *p_itself)
384384
static void CmpObj_dealloc(ComponentObject *self)
385385
{
386386
/* Cleanup of self->ob_itself goes here */
387-
PyMem_DEL(self);
387+
PyObject_Del(self);
388388
}
389389

390390
static PyObject *CmpObj_UnregisterComponent(ComponentObject *_self, PyObject *_args)

Mac/Modules/ctl/_Ctlmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ static void CtlObj_dealloc(ControlObject *self)
183183
{
184184
Py_XDECREF(self->ob_callbackdict);
185185
if (self->ob_itself)SetControlReference(self->ob_itself, (long)0); /* Make it forget about us */
186-
PyMem_DEL(self);
186+
PyObject_Del(self);
187187
}
188188

189189
static PyObject *CtlObj_HiliteControl(ControlObject *_self, PyObject *_args)

Mac/Modules/dlg/_Dlgmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ int DlgObj_Convert(PyObject *v, DialogPtr *p_itself)
179179
static void DlgObj_dealloc(DialogObject *self)
180180
{
181181
DisposeDialog(self->ob_itself);
182-
PyMem_DEL(self);
182+
PyObject_Del(self);
183183
}
184184

185185
static PyObject *DlgObj_DrawDialog(DialogObject *_self, PyObject *_args)

Mac/Modules/drag/_Dragmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ int DragObj_Convert(PyObject *v, DragRef *p_itself)
8484
static void DragObj_dealloc(DragObjObject *self)
8585
{
8686
Py_XDECREF(self->sendproc);
87-
PyMem_DEL(self);
87+
PyObject_Del(self);
8888
}
8989

9090
static PyObject *DragObj_DisposeDrag(DragObjObject *_self, PyObject *_args)

Mac/Modules/list/_Listmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ static void ListObj_dealloc(ListObject *self)
150150
#endif
151151
SetListRefCon(self->ob_itself, (long)0);
152152
if (self->ob_must_be_disposed && self->ob_itself) LDispose(self->ob_itself);
153-
PyMem_DEL(self);
153+
PyObject_Del(self);
154154
}
155155

156156
static PyObject *ListObj_LAddColumn(ListObject *_self, PyObject *_args)

0 commit comments

Comments
 (0)