File tree 1 file changed +2
-7
lines changed 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change 40
40
#include <stdbool.h>
41
41
42
42
#ifdef Py_DEBUG
43
- /* For debugging the interpreter: */
44
- #define LLTRACE 1 /* Low-level trace feature */
45
- #define CHECKEXC 1 /* Double-check exception checking */
43
+ /* For debugging the interpreter: */
44
+ # define LLTRACE 1 /* Low-level trace feature */
46
45
#endif
47
46
48
47
#if !defined(Py_BUILD_CORE )
@@ -1456,15 +1455,11 @@ eval_frame_handle_pending(PyThreadState *tstate)
1456
1455
(void)(BASIC_STACKADJ(-(n))); \
1457
1456
assert(STACK_LEVEL() <= frame->f_code->co_stacksize); \
1458
1457
} while (0)
1459
- #define EXT_POP (STACK_POINTER ) ((void)(lltrace && \
1460
- prtrace(tstate, (STACK_POINTER)[-1], "ext_pop")), \
1461
- *--(STACK_POINTER))
1462
1458
#else
1463
1459
#define PUSH (v ) BASIC_PUSH(v)
1464
1460
#define POP () BASIC_POP()
1465
1461
#define STACK_GROW (n ) BASIC_STACKADJ(n)
1466
1462
#define STACK_SHRINK (n ) BASIC_STACKADJ(-(n))
1467
- #define EXT_POP (STACK_POINTER ) (*--(STACK_POINTER))
1468
1463
#endif
1469
1464
1470
1465
/* Local variable macros */
You can’t perform that action at this time.
0 commit comments