[Python-checkins] r45414 - python/trunk/Objects/frameobject.c (original) (raw)

tim.peters python-checkins at python.org
Sat Apr 15 05:30:09 CEST 2006


Author: tim.peters Date: Sat Apr 15 05:30:08 2006 New Revision: 45414

Modified: python/trunk/Objects/frameobject.c Log: frame_clear(): Explain why it's important to make the frame look dead right at the start. Use Py_CLEAR for four more frame members.

Modified: python/trunk/Objects/frameobject.c

--- python/trunk/Objects/frameobject.c (original) +++ python/trunk/Objects/frameobject.c Sat Apr 15 05:30:08 2006 @@ -454,36 +454,29 @@ PyObject **fastlocals, **p, **oldtop; int i, slots; - oldtop = f->f_stacktop;

 /* Before anything else, make sure that this frame is clearly marked


More information about the Python-checkins mailing list