From: Fred Drake <fdrake@acm.org> Date: Mon, 21 Feb 2000 17:59:48 +0000 (+0000) Subject: Remove comment that Guido agree's doesn't make sense: X-Git-Tag: v1.6a1~379 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=145c26e3d31e48f40c8cfe7bf46e0d115104a00e;p=python Remove comment that Guido agree's doesn't make sense: PyEval_EvalCode() is *not* a "backward compatible interface", it's the one to use! --- diff --git a/Python/ceval.c b/Python/ceval.c index 646388106f..930b1bc16d 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -313,8 +313,6 @@ static enum why_code do_raise Py_PROTO((PyObject *, PyObject *, PyObject *)); static int unpack_sequence Py_PROTO((PyObject *, int, PyObject **)); -/* Backward compatible interface */ - PyObject * PyEval_EvalCode(co, globals, locals) PyCodeObject *co;