From: Michael W. Hudson Date: Mon, 11 Aug 2003 16:14:06 +0000 (+0000) Subject: Fix silly typo in comment. X-Git-Tag: v2.4a1~1758 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bdc6ea11102a00caf90a8c644898a00722e41c28;p=thirdparty%2FPython%2Fcpython.git Fix silly typo in comment. --- diff --git a/Objects/frameobject.c b/Objects/frameobject.c index bdff3c41ddd9..2b042cd4835c 100644 --- a/Objects/frameobject.c +++ b/Objects/frameobject.c @@ -609,7 +609,7 @@ PyFrame_New(PyThreadState *tstate, PyCodeObject *code, PyObject *globals, /* Most functions have CO_NEWLOCALS and CO_OPTIMIZED set. */ if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == (CO_NEWLOCALS | CO_OPTIMIZED)) - locals = NULL; /* PyFrame_Fast2Locals() will set. */ + locals = NULL; /* PyFrame_FastToLocals() will set. */ else if (code->co_flags & CO_NEWLOCALS) { locals = PyDict_New(); if (locals == NULL) {