diff options
author | Thomas Nyberg <tomnyberg@gmail.com> | 2018-03-04 06:06:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2018-03-04 06:06:01 (GMT) |
commit | 7023644e0c310a3006c984318c2c111c468735b4 (patch) | |
tree | 5d85c139dbe66ba318d3f469cdbafe61634e13db /Python/pylifecycle.c | |
parent | 0e6c8ee2358a2e23117501826c008842acb835ac (diff) | |
download | cpython-7023644e0c310a3006c984318c2c111c468735b4.zip cpython-7023644e0c310a3006c984318c2c111c468735b4.tar.gz cpython-7023644e0c310a3006c984318c2c111c468735b4.tar.bz2 |
closes bpo-32980 Remove _PyFrame_Init (GH-5965)
Diffstat (limited to 'Python/pylifecycle.c')
-rw-r--r-- | Python/pylifecycle.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 5db586e..a9b9470 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -690,9 +690,6 @@ _Py_InitializeCore(const _PyCoreConfig *core_config) _Py_ReadyTypes(); - if (!_PyFrame_Init()) - return _Py_INIT_ERR("can't init frames"); - if (!_PyLong_Init()) return _Py_INIT_ERR("can't init longs"); |