summaryrefslogtreecommitdiff
path: root/Python/compile.c
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-11-20 21:39:37 +1000
committerNick Coghlan <ncoghlan@gmail.com>2014-11-20 21:39:37 +1000
commit86a58dabec40bfb4c112b918cabd7eb21e52183c (patch)
treed1395dd323a5ccdff9b102340ca7d65aa7b8aaf3 /Python/compile.c
parent85b9913a629aeca8d6e0f73914256388e1dc990d (diff)
downloadcpython-86a58dabec40bfb4c112b918cabd7eb21e52183c.tar.gz
Issue #22869: Split pythonrun into two modules
- interpreter startup and shutdown code moved to a new pylifecycle.c module - Py_OptimizeFlag moved into the new module with the other global flags
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c
index ac9decc143..8abe50f4ca 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -30,8 +30,6 @@
#include "symtable.h"
#include "opcode.h"
-int Py_OptimizeFlag = 0;
-
#define DEFAULT_BLOCK_SIZE 16
#define DEFAULT_BLOCKS 8
#define DEFAULT_CODE_SIZE 128