summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-05-11 09:41:37 (GMT)
committerGeorg Brandl <georg@python.org>2007-05-11 09:41:37 (GMT)
commitbc1b5f1669ea1a1aec83e84531892b75d76d6e7c (patch)
tree7df5a8ce0169747a549427d23bff8afaca2c1b15 /Python/ceval.c
parent6bf8fa66ffecd51d59e896a65b52c8c45b25e1f0 (diff)
downloadcpython-bc1b5f1669ea1a1aec83e84531892b75d76d6e7c.zip
cpython-bc1b5f1669ea1a1aec83e84531892b75d76d6e7c.tar.gz
cpython-bc1b5f1669ea1a1aec83e84531892b75d76d6e7c.tar.bz2
Remove an XXX that is unnecessary.
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 44d6f25..4cc158b 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,