Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: d78cec5f39646f62384558fb85725427559426dc authored by Benjamin Peterson on 05 December 2009, 17:47:56 UTC
bump version to 2.7a1
Tip revision: d78cec5
object_tp_dealloc

static void
$abbrev$_dealloc($abbrev$object *self)
{
	/* XXXX Add your own cleanup code here */
	PyMem_DEL(self);
}
back to top