Add global Py_OptimizeFlag. SET_LINENO is omitted again unless this is
nonzero.
diff --git a/Python/compile.c b/Python/compile.c
index 0ee5519..b4377ec 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -59,6 +59,8 @@
#include <ctype.h>
#include <errno.h>
+int Py_OptimizeFlag = 0;
+
#define OP_DELETE 0
#define OP_ASSIGN 1
#define OP_APPLY 2
@@ -579,12 +581,13 @@
int op;
int arg;
{
- if (op == SET_LINENO)
+ if (op == SET_LINENO) {
com_set_lineno(c, arg);
- else {
- com_addbyte(c, op);
- com_addint(c, arg);
+ if (Py_OptimizeFlag)
+ return;
}
+ com_addbyte(c, op);
+ com_addint(c, arg);
}
static void