diff options
author | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2007-04-13 22:09:59 +0000 |
---|---|---|
committer | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2007-04-13 22:09:59 +0000 |
commit | 9d9fbb435935503b9fbd2754c2d8745d6239229a (patch) | |
tree | 9fb14842c81ab549c96410817c94d48ddd378b95 /Python | |
parent | 9bd522d7d13b8db51a87e650c5b439ccf49c616c (diff) | |
download | cpython-git-9d9fbb435935503b9fbd2754c2d8745d6239229a.tar.gz |
Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed chars in frameobject.c which can occur with opcodes > 127
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 9dddd2ff2f..b1ba4260b8 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -662,7 +662,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) #define STACKADJ(n) { (void)(BASIC_STACKADJ(n), \ lltrace && prtrace(TOP(), "stackadj")); \ assert(STACK_LEVEL() <= co->co_stacksize); } -#define EXT_POP(STACK_POINTER) (lltrace && prtrace(*(STACK_POINTER), "ext_pop"), *--(STACK_POINTER)) +#define EXT_POP(STACK_POINTER) (lltrace && prtrace((STACK_POINTER)[-1], "ext_pop"), *--(STACK_POINTER)) #else #define PUSH(v) BASIC_PUSH(v) #define POP() BASIC_POP() |