From: Georg Brandl Date: Sat, 5 Jan 2008 17:49:17 +0000 (+0000) Subject: Fix C++-style comment. X-Git-Tag: v2.6a1~740 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9fcd8ceb74fec0b596ca266868d28955fa251ff1;p=thirdparty%2FPython%2Fcpython.git Fix C++-style comment. --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 84a00082609e..3ebd29df9abd 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -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__", ""); }