config root man

Current Path : /usr/local/share/python2.5/Tools/modulator/Templates/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/local/share/python2.5/Tools/modulator/Templates/object_tp_as_mapping

/* Code to access $name$ objects as mappings */

static int
$abbrev$_length($abbrev$object *self)
{
	/* XXXX Return the size of the mapping */
}

static PyObject *
$abbrev$_subscript($abbrev$object *self, PyObject *key)
{
	/* XXXX Return the item of self indexed by key */
}

static int
$abbrev$_ass_sub($abbrev$object *self, PyObject *v, PyObject *w)
{
	/* XXXX Put w in self under key v */
	return 0;
}

static PyMappingMethods $abbrev$_as_mapping = {
	(inquiry)$abbrev$_length,		/*mp_length*/
	(binaryfunc)$abbrev$_subscript,		/*mp_subscript*/
	(objobjargproc)$abbrev$_ass_sub,	/*mp_ass_subscript*/
};

/* -------------------------------------------------------- */

Man Man