From 7be3a01506c3f52cfeddc1926fc735621750dcd7 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Tue, 31 Dec 2013 09:09:27 +0100 Subject: [PATCH] discard C code comment from generated code --- Cython/Utility/Exceptions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cython/Utility/Exceptions.c b/Cython/Utility/Exceptions.c index 14e83bd..bdc5341 100644 --- a/Cython/Utility/Exceptions.c +++ b/Cython/Utility/Exceptions.c @@ -288,8 +288,8 @@ static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb) tstate->exc_type = local_type; tstate->exc_value = local_value; tstate->exc_traceback = local_tb; - /* Make sure tstate is in a consistent state when we XDECREF - these objects (DECREF may run arbitrary code). */ + // Make sure tstate is in a consistent state when we XDECREF + // these objects (DECREF may run arbitrary code). Py_XDECREF(tmp_type); Py_XDECREF(tmp_value); Py_XDECREF(tmp_tb); -- 2.7.4