Commit 44a6ff6c authored by Guido van Rossum's avatar Guido van Rossum

Get rid of the initialization of _PyCompareState_Key.

parent 2ffbf6b1
...@@ -124,8 +124,6 @@ Py_Initialize(void) ...@@ -124,8 +124,6 @@ Py_Initialize(void)
/* Init Unicode implementation; relies on the codec registry */ /* Init Unicode implementation; relies on the codec registry */
_PyUnicode_Init(); _PyUnicode_Init();
_PyCompareState_Key = PyString_InternFromString("cmp_state");
bimod = _PyBuiltin_Init(); bimod = _PyBuiltin_Init();
if (bimod == NULL) if (bimod == NULL)
Py_FatalError("Py_Initialize: can't initialize __builtin__"); Py_FatalError("Py_Initialize: can't initialize __builtin__");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment