mirror of https://github.com/python/cpython.git
Replaced a test with an assertion.
(Suggested by Michael Hudson.)
This commit is contained in:
parent
01ba799244
commit
06cc973d06
|
@ -509,10 +509,8 @@ optimize_code(PyObject *code, PyObject* consts, PyObject *names, PyObject *linen
|
||||||
if (memchr(lineno, 255, tabsiz) != NULL)
|
if (memchr(lineno, 255, tabsiz) != NULL)
|
||||||
goto exitUnchanged;
|
goto exitUnchanged;
|
||||||
|
|
||||||
if (!PyString_Check(code))
|
|
||||||
goto exitUnchanged;
|
|
||||||
|
|
||||||
/* Avoid situations where jump retargeting could overflow */
|
/* Avoid situations where jump retargeting could overflow */
|
||||||
|
assert(PyString_Check(code));
|
||||||
codelen = PyString_Size(code);
|
codelen = PyString_Size(code);
|
||||||
if (codelen > 32700)
|
if (codelen > 32700)
|
||||||
goto exitUnchanged;
|
goto exitUnchanged;
|
||||||
|
|
Loading…
Reference in New Issue