Fix C++-style comment.

This commit is contained in:
Georg Brandl 2008-01-05 17:49:17 +00:00
parent f326898ad4
commit 9fcd8ceb74

View file

@ -2042,9 +2042,9 @@ With an argument, equivalent to object.__dict__.");
static PyObject *
builtin_trunc(PyObject *self, PyObject *number)
{
// XXX: The py3k branch gets better errors for this by using
// _PyType_Lookup(), but since float's mro isn't set in py2.6,
// we just use PyObject_CallMethod here.
/* XXX: The py3k branch gets better errors for this by using
_PyType_Lookup(), but since float's mro isn't set in py2.6,
we just use PyObject_CallMethod here. */
return PyObject_CallMethod(number, "__trunc__", "");
}