]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
PyFrameObject: rename f_stackbottom to f_stacktop, since it points to
authorTim Peters <tim.peters@gmail.com>
Sat, 23 Jun 2001 05:26:56 +0000 (05:26 +0000)
committerTim Peters <tim.peters@gmail.com>
Sat, 23 Jun 2001 05:26:56 +0000 (05:26 +0000)
commit8c96369513ded66146f9cf19678029615e29bcb7
tree76bd8eda4dd36f653ce54cbef09ddc9bbf1b4a92
parentf5eae668a81050919293453054be392cfe4f6b8d
PyFrameObject:  rename f_stackbottom to f_stacktop, since it points to
the next free valuestack slot, not to the base (in America, stacks push
and pop at the top -- they mutate at the bottom in Australia <winK>).
eval_frame():  assert that f_stacktop isn't NULL upon entry.
frame_delloc():  avoid ordered pointer comparisons involving f_stacktop
when f_stacktop is NULL.
Include/frameobject.h
Objects/frameobject.c
Python/ceval.c