diff options
author | Guido van Rossum <guido@python.org> | 2001-01-17 21:27:36 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-17 21:27:36 +0000 |
commit | a7ef80ae2fb3910a9765cf6d65cfb733428b7f0c (patch) | |
tree | 6e06174573d3a2d34b265f77fe557647def9aad5 /Python/pythonrun.c | |
parent | cd4f1c7bd4442a245ff6fb83fdcce5a7c56a8d9a (diff) | |
download | cpython-a7ef80ae2fb3910a9765cf6d65cfb733428b7f0c.tar.gz |
Get rid of the initialization of _PyCompareState_Key.
Diffstat (limited to 'Python/pythonrun.c')
-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 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__"); |