diff options
| author | Neal Norwitz <nnorwitz@gmail.com> | 2007-04-16 06:19:52 (GMT) | 
|---|---|---|
| committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-04-16 06:19:52 (GMT) | 
| commit | 03c566a268764c30dc4755f6e83bca8dfa09c169 (patch) | |
| tree | 61c46ea45cf312388b928549eae459ad51a520d3 /Python | |
| parent | a4ff44aa268beb7d4cd4d64dcce48f12196d7c61 (diff) | |
| download | cpython-03c566a268764c30dc4755f6e83bca8dfa09c169.zip cpython-03c566a268764c30dc4755f6e83bca8dfa09c169.tar.gz cpython-03c566a268764c30dc4755f6e83bca8dfa09c169.tar.bz2  | |
Revert 54813 for 2.5.1 release. Can be applied after 2.5 branch is unfrozen.
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 b1ba426..9dddd2f 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)[-1], "ext_pop"), *--(STACK_POINTER)) +#define EXT_POP(STACK_POINTER) (lltrace && prtrace(*(STACK_POINTER), "ext_pop"), *--(STACK_POINTER))  #else  #define PUSH(v)		BASIC_PUSH(v)  #define POP()		BASIC_POP()  | 
