From 44a6ff6cf49a8b0503f4598a398c71364e183ccc Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 17 Jan 2001 21:27:36 +0000 Subject: Get rid of the initialization of _PyCompareState_Key. --- Python/pythonrun.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 4dc2ddd8b7..ff2142b807 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -124,8 +124,6 @@ Py_Initialize(void) /* Init Unicode implementation; relies on the codec registry */ _PyUnicode_Init(); - _PyCompareState_Key = PyString_InternFromString("cmp_state"); - bimod = _PyBuiltin_Init(); if (bimod == NULL) Py_FatalError("Py_Initialize: can't initialize __builtin__"); -- cgit v1.2.1