Remove an XXX that is unnecessary.
authorGeorg Brandl <georg@python.org>
Fri, 11 May 2007 09:41:37 +0000 (09:41 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 11 May 2007 09:41:37 +0000 (09:41 +0000)
Python/ceval.c

index 44d6f25ccd6d476ec2042ba86b9369ffb400aad3..4cc158b535d391037074135a77f7cbbbaf597ea1 100644 (file)
@@ -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,