[Python-checkins] CVS: python/dist/src/Python pythonrun.c,2.94,2.95

Barry A. Warsaw python-dev@python.org
Tue, 2 May 2000 15:19:02 -0400 (EDT)


Update of /projects/cvsroot/python/dist/src/Python
In directory anthem:/home/bwarsaw/projects/python/Python

Modified Files:
	pythonrun.c 
Log Message:
Py_UseClassExceptionsFlag is deprecated.  We keep the C variable for C
API consistency, but nothing sets it or checks it now.


Index: pythonrun.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Python/pythonrun.c,v
retrieving revision 2.94
retrieving revision 2.95
diff -C2 -r2.94 -r2.95
*** pythonrun.c	2000/05/01 17:55:15	2.94
--- pythonrun.c	2000/05/02 19:18:59	2.95
***************
*** 87,91 ****
  int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */
  int Py_NoSiteFlag; /* Suppress 'import site' */
! int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c */
  int Py_FrozenFlag; /* Needed by getpath.c */
  int Py_UnicodeFlag = 0; /* Needed by compile.c */
--- 87,91 ----
  int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */
  int Py_NoSiteFlag; /* Suppress 'import site' */
! int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */
  int Py_FrozenFlag; /* Needed by getpath.c */
  int Py_UnicodeFlag = 0; /* Needed by compile.c */