8000 gh-99741: Implement Multi-Phase Init for the _xxsubinterpreters Module by ericsnowcurrently · Pull Request #99742 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-99741: Implement Multi-Phase Init for the _xxsubinterpreters Module #99742

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prev Previous commit
Next Next commit
Clear channels before interpreters.
  • Loading branch information
ericsnowcurrently committed Dec 2, 2022
commit 0bfe7b50dba85117b7cca9d554d944b346f236d6
2 changes: 1 addition & 1 deletion Lib/test/test__xxsubinterpreters.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,8 @@ def clean_up_channels():
class TestBase(unittest.TestCase):

def tearDown(self):
clean_up_interpreters()
clean_up_channels()
clean_up_interpreters()


##################################
Expand Down
0