Merged revisions 72202 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72202 | mark.dickinson | 2009-05-02 18:55:01 +0100 (Sat, 02 May 2009) | 3 lines

  Remove unnecessary use of context for long getters.
  (Related to issue #5880).
........
This commit is contained in:
Mark Dickinson 2009-05-02 17:57:52 +00:00
parent 3427846b68
commit 6bf1900e18

View file

@ -3832,8 +3832,13 @@ long_getnewargs(PyLongObject *v)
} }
static PyObject * static PyObject *
long_getN(PyLongObject *v, void *context) { long_get0(PyLongObject *v, void *context) {
return PyLong_FromLong((Py_intptr_t)context); return PyLong_FromLong(0L);
}
static PyObject *
long_get1(PyLongObject *v, void *context) {
return PyLong_FromLong(1L);
} }
static PyObject * static PyObject *
@ -4091,22 +4096,22 @@ static PyMethodDef long_methods[] = {
}; };
static PyGetSetDef long_getset[] = { static PyGetSetDef long_getset[] = {
{"real", {"real",
(getter)long_long, (setter)NULL, (getter)long_long, (setter)NULL,
"the real part of a complex number", "the real part of a complex number",
NULL}, NULL},
{"imag", {"imag",
(getter)long_getN, (setter)NULL, (getter)long_get0, (setter)NULL,
"the imaginary part of a complex number", "the imaginary part of a complex number",
(void*)0}, NULL},
{"numerator", {"numerator",
(getter)long_long, (setter)NULL, (getter)long_long, (setter)NULL,
"the numerator of a rational number in lowest terms", "the numerator of a rational number in lowest terms",
NULL}, NULL},
{"denominator", {"denominator",
(getter)long_getN, (setter)NULL, (getter)long_get1, (setter)NULL,
"the denominator of a rational number in lowest terms", "the denominator of a rational number in lowest terms",
(void*)1}, NULL},
{NULL} /* Sentinel */ {NULL} /* Sentinel */
}; };