diff options
author | Georg Brandl <georg@python.org> | 2008-01-05 17:49:17 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-05 17:49:17 (GMT) |
commit | 9fcd8ceb74fec0b596ca266868d28955fa251ff1 (patch) | |
tree | 5859e2e42df2a10b4c31baf18aabc96dee7363ec /Python/bltinmodule.c | |
parent | f326898ad48f625a5edcc893d24b59b309a01a53 (diff) | |
download | cpython-9fcd8ceb74fec0b596ca266868d28955fa251ff1.zip cpython-9fcd8ceb74fec0b596ca266868d28955fa251ff1.tar.gz cpython-9fcd8ceb74fec0b596ca266868d28955fa251ff1.tar.bz2 |
Fix C++-style comment.
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 84a0008..3ebd29d 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__", ""); } |