diff options
author | Guido van Rossum <guido@python.org> | 2001-01-17 21:27:36 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-17 21:27:36 (GMT) |
commit | 44a6ff6cf49a8b0503f4598a398c71364e183ccc (patch) | |
tree | 0becfa32070792c5f018fd8adbe22441a38d9c92 /Python | |
parent | 2ffbf6b1125ca3c2a296e479af8b982854311600 (diff) | |
download | cpython-44a6ff6cf49a8b0503f4598a398c71364e183ccc.zip cpython-44a6ff6cf49a8b0503f4598a398c71364e183ccc.tar.gz cpython-44a6ff6cf49a8b0503f4598a398c71364e183ccc.tar.bz2 |
Get rid of the initialization of _PyCompareState_Key.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 4dc2ddd..ff2142b 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__"); |