[Python-checkins] CVS: python/dist/src/Python pythonrun.c,2.117,2.118

Guido van Rossum gvanrossum@users.sourceforge.net
Wed, 17 Jan 2001 13:27:38 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv15065

Modified Files:
	pythonrun.c 
Log Message:
Get rid of the initialization of _PyCompareState_Key.


Index: pythonrun.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/pythonrun.c,v
retrieving revision 2.117
retrieving revision 2.118
diff -C2 -r2.117 -r2.118
*** pythonrun.c	2001/01/05 00:54:29	2.117
--- pythonrun.c	2001/01/17 21:27:36	2.118
***************
*** 125,130 ****
  	_PyUnicode_Init();
  
- 	_PyCompareState_Key = PyString_InternFromString("cmp_state");
- 
  	bimod = _PyBuiltin_Init();
  	if (bimod == NULL)
--- 125,128 ----