8000 gh-76785: Fix Windows Refleak in test_interpreters by ericsnowcurrently · Pull Request #117913 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-76785: Fix Windows Refleak in test_interpreters #117913

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

Merged
merged 2 commits into from
Apr 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
Next Next commit
Drop unused code.
  • Loading branch information
ericsnowcurrently committed Apr 15, 2024
commit 07867367b853e6d9b2575828d6d6f191c99f766f
3 changes: 0 additions & 3 deletions Lib/test/test_interpreters/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,6 @@ def test_idempotent(self):

@requires_test_modules
def test_created_with_capi(self):
last = 0
for id, *_ in _interpreters.list_all():
last = max(last, id)
expected = _testinternalcapi.next_interpreter_id()
text = self.run_temp_from_capi(f"""
import {interpreters.__name__} as interpreters
Expand Down
0