summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-17 08:57:43 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-17 08:57:43 +0000
commitc83315d27bcd2b9d7176320ce522d4b6e9b9421b (patch)
tree1ee32a67e9ce83692ad05ba5d0838cfde1d0cf85 /Python/pythonrun.c
parentcf31302a7616475228e892c963d6a145d544073d (diff)
downloadcpython-c83315d27bcd2b9d7176320ce522d4b6e9b9421b.tar.gz
_Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index d04d111a44..2c5400d575 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -71,10 +71,6 @@ int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */
int Py_FrozenFlag; /* Needed by getpath.c */
int Py_UnicodeFlag = 0; /* Needed by compile.c */
int Py_IgnoreEnvironmentFlag; /* e.g. PYTHONPATH, PYTHONHOME */
-/* _XXX Py_QnewFlag should go away in 2.3. It's true iff -Qnew is passed,
- on the command line, and is used in 2.2 by ceval.c to make all "/" divisions
- true divisions (which they will be in 2.3). */
-int _Py_QnewFlag = 0;
/* Reference to 'warnings' module, to avoid importing it
on the fly when the import lock may be held. See 683658/771097