diff options
author | Fred Drake <fdrake@acm.org> | 2000-02-21 17:59:48 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-02-21 17:59:48 (GMT) |
commit | 145c26e3d31e48f40c8cfe7bf46e0d115104a00e (patch) | |
tree | 5081192b7c15b822d907114b0760838926d6e190 /Python | |
parent | c29e41df44ae2d13f6a1f82dbb30ef29df4353cc (diff) | |
download | cpython-145c26e3d31e48f40c8cfe7bf46e0d115104a00e.zip cpython-145c26e3d31e48f40c8cfe7bf46e0d115104a00e.tar.gz cpython-145c26e3d31e48f40c8cfe7bf46e0d115104a00e.tar.bz2 |
Remove comment that Guido agree's doesn't make sense:
PyEval_EvalCode() is *not* a "backward compatible interface", it's the
one to use!
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 6463881..930b1bc 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; |