From: Georg Brandl Date: Fri, 11 May 2007 09:41:37 +0000 (+0000) Subject: Remove an XXX that is unnecessary. X-Git-Tag: v2.6a1~1754 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc1b5f1669ea1a1aec83e84531892b75d76d6e7c;p=python Remove an XXX that is unnecessary. --- diff --git a/Python/ceval.c b/Python/ceval.c index 44d6f25ccd..4cc158b535 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -490,7 +490,6 @@ volatile int _Py_Ticker = 100; PyObject * PyEval_EvalCode(PyCodeObject *co, PyObject *globals, PyObject *locals) { - /* XXX raise SystemError if globals is NULL */ return PyEval_EvalCodeEx(co, globals, locals, (PyObject **)NULL, 0,