Message370631
The following test is enough to reproduce the leak:
---
import unittest
import _xxsubinterpreters as _interpreters
class TestInterpreterDestroy(unittest.TestCase):
def tearDown(self):
for interp_id in _interpreters.list_all():
if interp_id == 0: # main
continue
_interpreters.destroy(interp_id)
def test_from_current(self):
interp_id = _interpreters.create(isolated=True)
_interpreters.run_string(interp_id, "import select")
--- |
|
Date |
User |
Action |
Args |
2020-06-02 21:12:06 | vstinner | set | recipients:
+ vstinner, ncoghlan, belopolsky, pitrou, ned.deily, pmpp, eric.snow, zach.ware, steve.dower, davin, emilyemorehouse, pablogsal, miss-islington, nanjekyejoannah |
2020-06-02 21:12:06 | vstinner | set | messageid: <1591132326.64.0.806562496142.issue32604@roundup.psfhosted.org> |
2020-06-02 21:12:06 | vstinner | link | issue32604 messages |
2020-06-02 21:12:06 | vstinner | create | |
|