From 145c26e3d31e48f40c8cfe7bf46e0d115104a00e Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 21 Feb 2000 17:59:48 +0000 Subject: [PATCH] Remove comment that Guido agree's doesn't make sense: PyEval_EvalCode() is *not* a "backward compatible interface", it's the one to use! --- Python/ceval.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/Python/ceval.c b/Python/ceval.c index 646388106f7..930b1bc16d7 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;